How to convert dd/MM/YYYY to yyyyMMdd in sqlserver 2005
How to convert dd/MM/YYYY to yyyyMMdd in sqlserver 2005
1 If you use front end application, do formation there
2 Otherwsie, use
select convert(char(8),date_col,112) from your_table
No one has followed this question yet.