t*****z 发帖数: 812 | 1 如果有一个表
id int(10) unsigned not null auto_increment,
name varchar(50) not null,
price int(10) unsigned not null,
primary key ('id')
其中(name,price)必须unique。当我要插入一个数据的时候,我是不是应该先查一
下这个数据
是否已经存在,如果不存在,再执行插入?
有没有其他比较好的办法? | B*****g 发帖数: 34098 | 2 google “unique constraint”
【在 t*****z 的大作中提到】 : 如果有一个表 : id int(10) unsigned not null auto_increment, : name varchar(50) not null, : price int(10) unsigned not null, : primary key ('id') : 其中(name,price)必须unique。当我要插入一个数据的时候,我是不是应该先查一 : 下这个数据 : 是否已经存在,如果不存在,再执行插入? : 有没有其他比较好的办法?
| g***l 发帖数: 18555 | 3 大牛果然一语中的啊
【在 B*****g 的大作中提到】 : google “unique constraint”
| p*********t 发帖数: 2690 | 4 re
这个是建表的基本知识啊。
【在 B*****g 的大作中提到】 : google “unique constraint”
|
|