UFN_GETCMSSITEURLS
Return
| Return Type |
|---|
| table |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ClientSitesId | int | IN |
Definition
Copy
CREATE FUNCTION [dbo].[UFN_GETCMSSITEURLS]
(
@ClientSitesId int
)
RETURNS @CMSSiteURLs TABLE (
[URL] nvarchar(255),
[SEQUENCE] int
)
AS
begin
insert into @CMSSiteURLs
SELECT
[URL],
[SEQUENCE]
FROM
dbo.CMSSiteURLs
where ClientSitesId=@ClientSitesId
ORDER BY SEQUENCE
return
end