0

我总是在将数据插入到 mysql 表中时,我在插入之前使用该数据的选择以避免重复记录,如果查询返回 null,那么我插入记录。

但我认为也许这不是一种专业的方式来完成这项工作。

你会让我按照你的方式做吗?

4

4 回答 4

1

如果您不希望使用主键或唯一索引的原因是因为这会产生错误(如果您在单个查询中插入多行,这是一个问题),您可以使用以下语法

insert ignore into [tablename] () VALUES ()

您也可以使用 ON DUPLICATE KEY UPDATE 来更新某些字段。

insert into [tablename] () VALUES () ON DUPLICATE KEY UPDATE

有关更多信息,请查看http://dev.mysql.com/doc/refman/5.1/en/insert.html

于 2010-12-06T08:32:22.490 回答
1
You can try the following example. I would suggest you to try this first in your testing environment then you can implement this in your actual scenario.

Follow the below steps:

Step 1: create a table

CREATE TABLE IF NOT EXISTS `users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(30) NOT NULL,
  `email` varchar(50) NOT NULL,
  `password` varchar(20) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;


Step 2: Run this query multiple times and check that only one row is inserted

INSERT INTO `student` ( `name`, `age`)
SELECT `name`, `age` FROM `student`
WHERE NOT EXISTS (SELECT 1
    FROM `student`
    WHERE `name` = 'manish'
    AND `age` = '23'
    );
于 2013-07-19T14:07:00.730 回答
0

执行此操作的“专业”方法将使用主键约束。

于 2010-12-06T08:28:05.703 回答
0
$qry="INSERT username INTO users";
if(!mysql_query($qry))
{
  if(mysql_errno()=1062)
  {
    echo 'Unique costraint violation!';
  }
  else
  {
    //other error
  }
}
于 2012-11-15T19:15:56.003 回答