Hi!
I have a table in Access with string columns and a date column. I want to get all the rows from the table when the date is lower than 22.10.2010, except this month. So, i need the rows from 30.09.2010 to ...
I tied something, but I figured out it's not right:
SELECT name FROM table WHERE YEAR(date)<=2010 AND MONTH(date)<10
But this solution it's not good, and i have no other idea. Could you help me with a general solution, pls? Thanks