Jump to content

Query by date range


dk4210

Recommended Posts

Hello Guys,

 

I have a question.. I am trying to query the data base for a specific date range but it's not displaying the correct date range..

 

Here is my query

SELECT * FROM report WHERE start_date AND end_date BETWEEN '2011-08-01 00:00:00' AND '2011-08-31 00:00:00'

 

It seems to be loading all the rows not just the date rage specified above.. Please advise..

 

Thanks, Dan

Link to comment
Share on other sites

On more question for ya..

Is there a way to construct a query to grab the date range about and combine it with another table for example if I had two tables

 

Table A

|id |listing_id| start_date | end_date|

 

 

Table B

| listing id | listing_name |

 

 

What I would like to do is query table A for * with start and end date and get the id

 

Create a second query to grab the listing name in table b

 

Combine the query results  to show is the listing name in the csv file that I will be exporting...

 

Did I lose you?

 

Thanks for your help..

 

 

Link to comment
Share on other sites

Never use queries in a loop, always use a JOIN.

 

SELECT table_b.listing_id, listing_name, start_date, end_date
FROM Table_a
join table_b on table_a.listing_id = table_b.listing_id
WHERE (start_date BETWEEN '2011-08-01 00:00:00' AND '2011-08-31 00:00:00') AND (end_date BETWEEN '2011-08-01 00:00:00' AND '2011-08-31 00:00:00')

-Dan

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.