Skip to content

Instantly share code, notes, and snippets.

@andersr
Last active December 23, 2015 21:49
Show Gist options
  • Save andersr/6699110 to your computer and use it in GitHub Desktop.
Save andersr/6699110 to your computer and use it in GitHub Desktop.
FS 003 - SQL Schema and Tables
CREATE TABLE artists(
name TEXT,
age INTEGER,
instruments TEXT,
songs TEXT,
genres TEXT
);
ALTER TABLE artists ADD COLUMN albums TEXT;
ALTER TABLE artists RENAME TO musicians;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment