13 lines
228 B
SQL
13 lines
228 B
SQL
|
|
create table cities (
|
|
rectype int,
|
|
ctype int,
|
|
regiokey text not null primary key,
|
|
ckey text not null,
|
|
name text,
|
|
area decimal,
|
|
inhabitants int,
|
|
zipcode text,
|
|
long decimal,
|
|
lat decimal
|
|
);
|