Viewing post 1 (of 1 total)
-- I use a user defined function to strip the time part out of the Datetime --
CREATE FUNCTION dbo.TodaysDate (@fDate datetime)
RETURNS varchar(10) AS
BEGIN
Return (Convert(varchar(10),@fDate,101))
END
-- I use the...
August 4, 2004 at 12:12 pm
#517695