Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个名为no. 如果我插入no 数据库同样no不应该插入,如果它存储在该表中。请帮我。
no
谢谢
将其设置为Unique column和auto-increment。
Unique column
auto-increment
UNIQUE使用约束使所需的列唯一。
UNIQUE
您的 create table 语句应如下所示:
CREATE TABLE table_name ( col_1 datatype UNIQUE, col_2 datatype, .....)
这使得 col_1 独一无二。
看看谷歌返回Sql learning Basics和这个
您可以将列自动增量属性设置为 on 它将使列能够为每个新记录添加唯一的增量值,其他方式是向该特定列添加主键或唯一键约束