Jump to content

[SOLVED] Help on mysql and selection by dates :)


peddel

Recommended Posts

I got a MySQL table with some collums, the important collums are the following :

DAY - MONTH - YEAR - HOUR - MINUTE

The filling of this collums happens by using a date object and splitting it into the right sections.

 

I got a form with 6 drop down boxes for a person to select a start and a ending date.

Start boxes : DAY - MONTH - YEAR
End boxes: DAY - MONTH - YEAR

 

Now i want to find all the records in my table between these 2 dates.

Someone suggested me to use the following code

SELECT * FROM `dt_tb` WHERE dt BETWEEN '2005-01-01' AND '2005-12-31' 

 

Problem here is that i splitted the information, so its kinda hard to use that code.

Can anyone help out?

 

Link to comment
Share on other sites

Again after some long testing i found a sollution :D

And its rather easy, just a evolved version of what they suggested me.

 

$sql = "SELECT * FROM $register WHERE dag BETWEEN '$dagB' AND '$dagE' AND maand BETWEEN '$maandB' AND '$maandE' AND jaar BETWEEN '$jaarB' AND '$jaarE'";

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.