仅在数据尚不存在时才将数据插入数据库

时间:2015-03-11 13:22:54

标签: php mysql sql

我想将数据插入到数据库中,只有它尚不存在。所以我使用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.")");

0 个答案:

没有答案