Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: I dont want datatime datatype ...just date

    --  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...

Viewing post 1 (of 1 total)