Skip to content

Instantly share code, notes, and snippets.

@juliensimon
Created April 14, 2015 09:12
Show Gist options
  • Save juliensimon/12e9736bd8b2be62b316 to your computer and use it in GitHub Desktop.
Save juliensimon/12e9736bd8b2be62b316 to your computer and use it in GitHub Desktop.
create table redshift
CREATE TABLE mydata
(
lastname VARCHAR(30) NOT NULL,
firstname VARCHAR(30) NOT NULL,
gender CHAR(1) NOT NULL,
state VARCHAR(30) NOT NULL,
age SMALLINT NOT NULL,
month SMALLINT NOT NULL,
day SMALLINT NOT NULL,
hour SMALLINT NOT NULL,
minutes SMALLINT NOT NULL,
items SMALLINT NOT NULL,
basket INTEGER NOT NULL
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment