I am created one function as Test1(). I want to rename the function as Test11().
Create function dbo.Test1()
returns Datetime
AS
BEGIN
return (SELECT GETDATE())
END
GO
SELECT dbo.Test1()
If possible to rename the function name using query.