AdventureWorks
Basic Index
Expanded Index
Function:
dbo.ufnGetAccountingStartDate
Output Type:
datetime
There are no input parameters
CREATE FUNCTION [dbo].[ufnGetAccountingStartDate]()
RETURNS [datetime]
AS
BEGIN
RETURN CONVERT(datetime, '20030701', 112);
END;