box-o-sand/postgresql/tutorial/weather/init.sql

13 lines
178 B
MySQL
Raw Normal View History

CREATE TABLE weather (
city varchar(80),
temp_lo int,
temp_hi int,
prcp real,
date date
);
CREATE TABLE cities (
name varchar(80),
location point
);