Here's a table:
orders(id, item, deliveryDate, courier_id)
I'd like to write a query that will return all orders for a given courier with a delivery date that's within a month of today. How do I do that?
|
|
In T-SQL:
EDIT While the period in this solution is calculated to be roughly a month, it is not precisely one month, as uncle brad has neatly observed. If you need to be precise, you should calculate one month from the current date like this: |
|||||||
|
|
Most servers use the integer part of the date for days. In this example I use "Now()" as a server function that returns the current date. You should look the right one on the documentation of the server you use. (also the ? mark as the value of courier id)
If your server does not hold days - you can look on it's date-conversion functions |
|||
|
|
|
If MySQL
|
|||
|
|