mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
7 lines
138 B
MySQL
7 lines
138 B
MySQL
|
CREATE DATABASE numismatics;
|
||
|
|
||
|
CREATE TABLE coin (cid INT(8) PRIMARY KEY,
|
||
|
unit VARCHAR(20));
|
||
|
|
||
|
SELECT * from mint;
|