Hello,
I am trying to create a view in MS SQL Server 2000 with "DeliveryDate" field which data type is an Integer Float in this format: "YYYYMMDD".
Does anyone know how I can Convert this field to a Date data type?
You should post this question in the SQL Server forum rather than the Access Queries forum. Here is one way to convert a numeric value to a datetime value. It involves converting the numeric to string or character data and then to datetime.
convert(datetime, str(<floatval>)) Terry L. Broadbent FAQ183-874 contains tips for posting questions in these forums.
NOTE: Reference to the FAQ is not directed at any individual.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.