id INTEGER name TEXT age INTEGER
SELECT * FROM items
Table
a collection of data organized into rows and columns. Tables are sometimes referred to as relations. The table would be items
items
Column
A set of data values of a particular type. id, name, and age are the columns
id
name
age
All data stored in a relation database is of a certain data type.
Clauses
SELECT and FROM are the clauses
SELECT
FROM
Last updated 4 years ago