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