Chugging through the 'basics' tutorial

mostly for fun ... and to see if I'm missing any foundational bits.
This commit is contained in:
Dan Buch
2012-07-14 10:59:48 -04:00
parent 0d62c61add
commit 1593c21031
4 changed files with 21 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
CREATE TABLE weather (
city varchar(80),
temp_lo int,
temp_hi int,
prcp real,
date date
);
CREATE TABLE cities (
name varchar(80),
location point
);

View File

@@ -0,0 +1,2 @@
DROP TABLE IF EXISTS weather;
DROP TABLE IF EXISTS cities;