我想将数据插入到数据库中,只有它尚不存在。所以我使用INSERT IGNORE。
问题在于字段" createDate" - 它每秒都在变化,这使得新数据变得新颖/独特。 有没有办法为SQL设置比较字段?
$res = mysql_query ("INSERT IGNORE INTO `alerts` (userID, type, refID, title, openBy, createDate) VALUES (".$mainIndex['userID'].", 'comment', ".$mainIndex['id'].", '".$contactName."', ".$mainIndex['userID'].", ".$todayLX.")");