Skip to content

Instantly share code, notes, and snippets.

@civera2
Last active March 22, 2018 20:27
Show Gist options
  • Save civera2/3c8ae1b05f3a6be1b223cbebecf08109 to your computer and use it in GitHub Desktop.
Save civera2/3c8ae1b05f3a6be1b223cbebecf08109 to your computer and use it in GitHub Desktop.
CREATE TABLE regions (
region_id INT NOT NULL,
region_name VARCHAR(25),
PRIMARY KEY (region_id)
);
INSERT INTO regions
VALUES (
1,
'Europe'
);
INSERT INTO regions
VALUES (
2,
'Americas'
);
INSERT INTO regions
VALUES (
3,
'Asia'
);
INSERT INTO regions
VALUES (
4,
'Middle East and Africa'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment