mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
11 lines
241 B
MySQL
11 lines
241 B
MySQL
|
create table tests
|
||
|
( Id INTEGER NOT NULL,
|
||
|
Name VARCHAR(255) NOT NULL,
|
||
|
primary key(Id)
|
||
|
);
|
||
|
|
||
|
insert into tests values (1, 'a');
|
||
|
insert into tests values (2, 'b');
|
||
|
insert into tests values (3, 'c');
|
||
|
insert into tests values (4, 'd');
|