blob: 37686e17008c576721c8e49123e6a2780f0e0dcf [file] [log] [blame]
create table book
(
id int,
title varchar(100),
author int
);
insert into book
values (1, 'Les Miserables', 1);
insert into book
values (2, 'The Count Of Monte Cristo', 2);