Home > Article > Daily Programming > The keyword of primary key constraint in mysql is
In MySQL, the keyword of primary key constraints is PRIMARY KEY
Detailed explanation:
In MySQL, primary key constraints are used for Identifies a unique and non-repeatable record in the table. Primary key constraints can be specified in the following ways:
Example:
<code class="sql">CREATE TABLE 表名 ( 字段名 数据类型 PRIMARY KEY );</code>
Example:
<code class="sql">CREATE TABLE customers ( customer_id INT NOT NULL PRIMARY KEY, name VARCHAR(255) NOT NULL );</code>
In this case, the customer_id
column is defined as primary key. This means that the customer_id
value must be unique for each record in the table, and no duplicates are allowed.
Advantages of primary key constraints:
The above is the detailed content of The keyword of primary key constraint in mysql is. For more information, please follow other related articles on the PHP Chinese website!