UFN_RE7BBNCWEBTRAFFICPAGE_GETPAGENAME
Return
Return Type |
---|
nvarchar(255) |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | int | IN |
Definition
Copy
create function dbo.UFN_RE7BBNCWEBTRAFFICPAGE_GETPAGENAME(@ID int)
returns nvarchar(255)
as
begin
return
(
select top 1 [PAGENAME] from [dbo].[RE7_BBNCWEBTRAFFIC] where [PAGE_LOCALID] = @ID and [PAGENAME] is not null order by [DATEREQUESTED] desc
)
end