Vibe Launchpad
Level 1 · 0 XPSign in
Supabase· Step 3 of 80 cleared in this quest
Step 3 · about 3 minutes

A table is just a spreadsheet

Two minutes of reading that makes the rest of this quest obvious.

A table is a sheet. Each column is a kind of fact — name, email, price. Each row is one thing — one customer, one order.

One extra idea a spreadsheet does not have: every row needs a primary key — a value that is unique to that row, so you can point at exactly one. Usually it is an id the database fills in for you.

  • Column = a kind of fact, the same type all the way down.
  • Row = one actual thing.
  • Primary key = the unique handle on one row.