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?

 

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'";

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.