Skip to content

Instantly share code, notes, and snippets.

@shahidhk
Created August 14, 2018 09:28
Show Gist options
  • Select an option

  • Save shahidhk/b1b620c3dcfd68f3de7d9ed8c253ce3d to your computer and use it in GitHub Desktop.

Select an option

Save shahidhk/b1b620c3dcfd68f3de7d9ed8c253ce3d to your computer and use it in GitHub Desktop.
CREATE TABLE book (
id SERIAL NOT NULL,
title TEXT NOT NULL,
author TEXT NOT NULL,
genre TEXT,
PRIMARY KEY (id)
);
CREATE TABLE author (
name TEXT NOT NULL,
country TEXT,
born INTEGER,
died INTEGER,
PRIMARY KEY (name)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment