1create table tests
2( Id INTEGER NOT NULL,
3 Name VARCHAR(255) NOT NULL,
4 primary key(Id)
5);
6
7insert into tests values (1, 'a');
8insert into tests values (2, 'b');
9insert into tests values (3, 'c');
10insert into tests values (4, 'd');
11insert into tests values (5, 'hello');