Difference between revisions of "Dbo.ufnGetAccountingStartDate (function)"

From dbscript Online Help
Jump to: navigation, search
(New page: == wikibot == {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" |- | '''function | dbo.ufnGetAccountingStartDate |- |} <pre> CREATE FUNCTION [dbo].[ufnGetAcc...)
(No difference)

Revision as of 14:35, 3 January 2009

wikibot

function dbo.ufnGetAccountingStartDate
CREATE FUNCTION [dbo].[ufnGetAccountingStartDate]()
RETURNS [datetime] 
AS 
BEGIN
    RETURN CONVERT(datetime, '20030701', 112);
END;