0
我有任務列表的表。如何在日期之間註釋日期?
如何爲日期創建條件?
我想爲其targerDate在2天或更短時間內的任務提供紅色。
$mainQuery = mysql_query("SELECT * FROM `tasks `");
while($mainIndex = mysql_fetch_array($mainQuery))
{
if ($mainIndex['tagertDate'] <= ???)
}
SQL表:
id int(10)
title varchar(250) utf8_general_ci
text text utf8_general_ci
catID tinyint(3)
createUserID int(4)
createDate date
targetDate date
你爲什麼給我SELECT查詢? – Roi