5 lines
205 B
SQL
5 lines
205 B
SQL
insert into articles(title, content)
|
|
values
|
|
('First blog', 'This is my very first blog'),
|
|
('Second blog', 'I am really enjoying writing blogs'),
|
|
('Third blog', 'Okay, this is getting hard to maintain'); |