I had my code working perfectly for MySQL and then my boss decides to swing his weight around and force all code to be written for MSSQL (without even understanding MySQL)
In MySQL I used a DATE data-type, and it appears that there is no such animal in MSSQL. I am left with trying to figure out how to use the DATETIME data-type, when all I need is the DATE portion.
Is there a way to strip the time part of the DATETIME data-type from being returned? When I echo the variable which enters the date info, it returns as "Sep 23 2005 12:00AM", when I don't really want to see the time...
Any suggestions?
Thanks!