I want to use ORDER BY clause in functions of SQL Server. But I cannot use this, it not allow that. So, how can I use this?
CREATE FUNCTION PersonIDGet
(
)
RETURNS int
AS
BEGIN
DECLARE @PersonID int;
SET @PersonID = (SELECT PersonID FROM Person ORDER BY PersonID DESC);
RETURN @PersonID
END
I got this error.
The ORDER BY clause is invalid in views, inline functions, derived tables, subqueries, and common table expressions, unless TOP or FOR XML is also specified.