mehmetned
March 23rd, 2007, 11:01 AM
How to create a query to convert a date datatype to string datatype? I use Ms access database.
|
Click to See Complete Forum and Search --> : date to string type mehmetned March 23rd, 2007, 11:01 AM How to create a query to convert a date datatype to string datatype? I use Ms access database. mcmcom March 23rd, 2007, 01:24 PM select cast(myDate as varchar) as my_new_column_name. should work hth, mcm davide++ March 26th, 2007, 04:03 AM Hi all Use Format$ function select Format$(DateFiled, 'dd/mm/yyyy') as DATA_CHAR from MYTABLE codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |