mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
10 lines
318 B
SQL
10 lines
318 B
SQL
|
|
CREATE INDEX unit_index ON coin(unit);
|
|
|
|
CREATE TABLE coin (cid INT(8) PRIMARY KEY,
|
|
unit VARCHAR(20),
|
|
value NUMERIC(8,2), -- just a comment here;
|
|
mintage_year INT(8),
|
|
mint_id INT(8));
|
|
|
|
CREATE DATABASE numismatics;
|