Lesson 27 of 3284%

(Progress persistence is disabled until Phase 9)

SQL
Beginner

Primary Keys

Uniquely identify rows.

Primary Keys

Uniquely identify rows.

Example

-- Insert with an existing primary key will fail
INSERT INTO categories (id, name) VALUES (1, 'Error Category');

Test it Yourself

Lesson Progress

Take QuizBuild a SQL Project