Oct 25, 2005 #1 notstock78 Technical User Joined Jul 13, 2005 Messages 9 Location US I am trying to find the proper syntax for querying every thing from a specific date range using MS SQL. The table is SE_DATA and the field is SEDATE.
I am trying to find the proper syntax for querying every thing from a specific date range using MS SQL. The table is SE_DATA and the field is SEDATE.
Oct 25, 2005 #2 johnherman MIS Joined Oct 10, 2003 Messages 2,323 Location US Select <whatever> from SE_DATA where SEDATE >= <startdate> and SEDATE <= <enddate> ------------------------- The trouble with doing something right the first time is that nobody appreciates how difficult it was - Steven Wright Upvote 0 Downvote
Select <whatever> from SE_DATA where SEDATE >= <startdate> and SEDATE <= <enddate> ------------------------- The trouble with doing something right the first time is that nobody appreciates how difficult it was - Steven Wright
Oct 26, 2005 Thread starter #3 notstock78 Technical User Joined Jul 13, 2005 Messages 9 Location US Thank you, it works great. I am just starting learn SQL and I have been struggling with some of the syntax. Upvote 0 Downvote
Thank you, it works great. I am just starting learn SQL and I have been struggling with some of the syntax.