Click here to Skip to main content
15,893,508 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
SELECT * FROM Orders2 WHERE FROM Monthname = 'January' TO Monthname = 'October';

I want to show Monthname from January to October. is the command correct?
Posted
Updated 10-Dec-10 23:40pm
v4

1 solution

NO Correct is:

Select * from Orders where month([datefield_name])>=1 and month([datefield_name])<=10
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900