Skip to content

Instantly share code, notes, and snippets.

@identity2
Created June 8, 2019 05:14
Show Gist options
  • Save identity2/cdbdb3171fd716be7d8f83516943e83a to your computer and use it in GitHub Desktop.
Save identity2/cdbdb3171fd716be7d8f83516943e83a to your computer and use it in GitHub Desktop.
table
CREATE TABLE `Contact` (
`ID` INTEGER NOT NULL UNIQUE,
`Name` VARCHAR NOT NULL,
`Phone` INTEGER NOT NULL UNIQUE,
`City` VARCHAR NOT NULL,
PRIMARY KEY(`ID`)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment