What is a Primary Key? (Database) #shorts #sql

preview_player
Показать описание
This SQL tutorial for beginners will walk you through what is a SQL primary key.
Usually, the explanation for this is not that hard - a primary key in a database is a unique kind of SQL index that uniquely identify a row in a table.

The usual definition of a SQL primary key refers to it being an attribute that identifies a record, and these days, primary keys are usually used together with the AUTO_INCREMENT feature so that the rows added to a table could have an auto-incrementing ID associated with them. Here's a MySQL Server-based example:

CREATE TABLE `pk_example` (
`id` INT(12) NOT NULL AUTO_INCREMENT PRIMARY KEY,
...
) ENGINE = InnoDB;

Subscribe to know more about database management systems and their features, primary keys, SQL indexes, security features, answers to sql interview questions and more, and until next time.

#shorts #reels #database #developer #sql #interview #web #mysql
Рекомендации по теме