0
kicks
Compare date as date not as varchar
When I was viewing someone's code, I have noticed that the date values were not compared as dates but they were converted to varchar before comparision Suppose, you want find out the objects that were created in February 2011. The correct code is select name from sys.objects where create_date>...