E ehnruiz New member Local time Today, 14:56 Joined May 15, 2009 Messages 2 May 15, 2009 #1 How can I use sql to convert the following text field data 5/14/2009 to display as 2009-05-14. I am using a text field. Thanks
How can I use sql to convert the following text field data 5/14/2009 to display as 2009-05-14. I am using a text field. Thanks
MSAccessRookie AWF VIP Local time Today, 17:56 Joined May 2, 2008 Messages 3,423 May 15, 2009 #2 ehnruiz said: How can I use sql to convert the following text field data 5/14/2009 to display as 2009-05-14. I am using a text field. Thanks Click to expand... You can try using the Format() command to reformat the string as a date. FORMAT(YourTextDate, "yyyy-mm-dd")
ehnruiz said: How can I use sql to convert the following text field data 5/14/2009 to display as 2009-05-14. I am using a text field. Thanks Click to expand... You can try using the Format() command to reformat the string as a date. FORMAT(YourTextDate, "yyyy-mm-dd")
E ehnruiz New member Local time Today, 14:56 Joined May 15, 2009 Messages 2 May 15, 2009 #3 Txs, that's exactly what I ended up using. Appreciate pointing me in right direction.