2.3. 創建一個新的資料表
CREATE TABLE weather (
city varchar(80),
temp_lo int, -- low temperature
temp_hi int, -- high temperature
prcp real, -- precipitation
date date
);CREATE TABLE cities (
name varchar(80),
location point
);Was this helpful?