mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
6 lines
156 B
SQL
6 lines
156 B
SQL
CREATE DATABASE numismatics;
|
|
|
|
CREATE TABLE mint (mid INT(8)PRIMARY KEY,
|
|
country VARCHAR(20),
|
|
city VARCHAR(20)); --+ DBTYPE = BTREE
|
|
|