Tag archive
Commands grouped around the same concept, pattern, or recurring problem.
Extend a table's structure by adding a new column with `ALTER TABLE`.
Inspect a table definition to see its column names and data types.
Permanently delete a column and all its data from a table using ALTER TABLE.
Use `AS` to give result columns clearer labels without changing the underlying table schema.
Define a column whose value is always derived from an expression over other columns — the database recomputes or stores it on every write so queries never need to repeat the formula.