Learning Hub

SQL: creating tables

Topic 1 of 2 in this level
Reading as a guest — sign up to save your progress →

Creating tables

CREATE TABLE sales (
  id INTEGER PRIMARY KEY,
  item TEXT,
  qty INTEGER
);
Prefer hands-on? Practise in the Playground · Learn it as a story — both coming soon.