1593c21031
mostly for fun ... and to see if I'm missing any foundational bits.
13 lines
178 B
SQL
13 lines
178 B
SQL
CREATE TABLE weather (
|
|
city varchar(80),
|
|
temp_lo int,
|
|
temp_hi int,
|
|
prcp real,
|
|
date date
|
|
);
|
|
|
|
CREATE TABLE cities (
|
|
name varchar(80),
|
|
location point
|
|
);
|