The data is always stored the same way, as either a datetime or smalldatetime data type.
You can convert this internal representation to a character datatype by using either the CAST or CONVERT functions. For example:
Code:
SELECT CONVERT(varchar(10),yourdatetimecolumn,101) as Yourdateasvarchar
FROM ...
will return a 10 character string representation of the date as mm/dd/yyyy. See BOL for other values of the 'style' parameter of the CONVERT function.
Jeff Mason
Custom Apps, Inc.
www.custom-apps.com