Difference between revisions of "Dbo.ufnGetAccountingEndDate (function)"
(New page: == wikibot == {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" |- | '''function | dbo.ufnGetAccountingEndDate |- |} <pre> CREATE FUNCTION [dbo].[ufnGetAccou...) |
(No difference)
|
Revision as of 13:35, 3 January 2009
wikibot
| function | dbo.ufnGetAccountingEndDate |
CREATE FUNCTION [dbo].[ufnGetAccountingEndDate]()
RETURNS [datetime]
AS
BEGIN
RETURN DATEADD(millisecond, -2, CONVERT(datetime, '20040701', 112));
END;