Okay, so I've been all over Google without much luck. I'm trying to query a column that contains dates in this format (1/1/2014, 1/2/2014, etc.). The column is nchar (which I'm aware should be changed), but I didn't figure this would be an issue. What's happening is when I search for a date starting at 1/1/2014, the query also returns results with 1/10/2014, 1/11/2014, and so on. Any help would be much appreciated! Here's the simple query I was using:
Code:
select * from WrapUpDataTable1 where WrapUpDataTable1.Date >= '1/1/2014' and WrapUpDataTable1.Date <= '1/3/2014'
Comment