I have a datetime column in SQL Server that gives me data like this 10/27/2010 12:57:49 pm and I want to query this column but just have SQL Server ret
datetime
10/27/2010 12:57:49 pm
The shortest date format of mm/dd/yy can be obtained with:
Select Convert(varchar(8),getdate(),1)