mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
11 lines
205 B
MySQL
11 lines
205 B
MySQL
|
CREATE DATABASE numismatics;
|
||
|
|
||
|
CREATE TABLE table1 (att_int INT(8) PRIMARY KEY,
|
||
|
att_char CHAR(2));
|
||
|
|
||
|
CREATE INDEX int_index ON table1(att_int);
|
||
|
|
||
|
CREATE INDEX int_index_1 ON table1(att_int);
|
||
|
|
||
|
|