SQL
id INTEGER
name TEXT
age INTEGERSELECT * FROM itemsTable
a collection of data organized into rows and columns. Tables are sometimes referred to as relations. The table would be
items
Column
A set of data values of a particular type.
id,name, andageare the columnsAll data stored in a relation database is of a certain data type.
Clauses
SELECTandFROMare the clauses
Last updated