If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > comparing 2 timestamp

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-05-07, 13:11
tenma-tenma tenma-tenma is offline
Registered User
 
Join Date: Feb 2007
Posts: 26
comparing 2 timestamp

Hi,

i would like to compare two value of timestamp

so my code is
Code:
$todayDate= date("Y-m-d 00:00:00");
$todayEnd= date("Y-m-d 23:59:59");

$query_reg_list= "select p.patientId, m.MRId, p.pname, p.alergi";
$query_reg_list.=" from MR m, patient p, havePatient h where h.MRId=m.MRId and h.patientId=p.patientId and regDate>='$todayStart' and regDate<='$todayEnd' order by p.patientId";
does anyone know how to compare these values? cause i always get empty result for that..
thank's for our attention
Reply With Quote
  #2 (permalink)  
Old 06-05-07, 15:11
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,534
please echo the sql after the variable substitution, i.e. instead of executing it

we need to see the same sql that mysql sees, e.g. if you were to run your query outside of php
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
  #3 (permalink)  
Old 06-06-07, 00:08
tenma-tenma tenma-tenma is offline
Registered User
 
Join Date: Feb 2007
Posts: 26
Hi.. thank's for the reply...
i have already solved it..
thanks..
regards,
Reply With Quote
  #4 (permalink)  
Old 06-06-07, 10:14
guelphdad guelphdad is offline
Registered User
 
Join Date: Mar 2004
Posts: 440
don't post asking for help if you don't post the solution afterwards, even if you figure it out yourself. Just common courtesy.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On