9 lines
215 B
MySQL
9 lines
215 B
MySQL
|
INSERT INTO biographies (content)
|
||
|
VALUES ('Some text'),
|
||
|
('Some other text');
|
||
|
|
||
|
INSERT INTO authors (name, biography_id)
|
||
|
VALUES ('J.R.R. Tolkien', 2),
|
||
|
('George Orwell', NULL),
|
||
|
('Jack London', 1);
|