a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
9 lines
207 B
SQL
9 lines
207 B
SQL
create table test (
|
|
id int NOT NULL PRIMARY KEY,
|
|
name varchar (20)
|
|
);
|
|
|
|
insert into test values (1, "mono test 1");
|
|
insert into test values (2, "mono test 2");
|
|
insert into test values (3, "mono test 3");
|