Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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");