1CREATE DATABASE numismatics;
2
3CREATE TABLE coin (cid INT(8) PRIMARY KEY,
4                       unit VARCHAR(20));
5
6SELECT * from mint;
7