-2
我有一個數據庫,我想選擇從當前日期的數據庫數據僅供參考,之後,對於tommorrows日期如何選擇從MySQL數據庫的當前日期數據和tommorrows日期
$query = mysql_query("SELECT PatientMaster.PatientFirstName,PatientMaster.PatientLastName,PatientMaster.PatientID,ProviderAppointmentListings.ProviderNPI,ProviderAppointmentListings.AppointmentTime,ProviderAppointmentListings.AppointmentListingsID, '' FROM PatientMaster JOIN ProviderAppointmentListings ON PatientMaster.PatientID = ProviderAppointmentListings.PatientId LIMIT 0, 30");
$rows = array();
while($row = mysql_fetch_assoc($query)) {
$rows[] = $row;
}
echo json_encode($rows);
這並不完全清楚你在這裏問什麼。請更清楚地說明問題。 – McGarnagle 2012-04-09 07:06:36
你是指當前日期和明天之間的日期嗎? – selo 2012-04-09 07:07:48
意思是在一個querry中,我想爲當前日期和其他我想要明天日期 – 2012-04-09 07:09:14