You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
id integerGENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
3
+
title varchar(40) NOT NULL,
4
+
content textNOT NULL,
5
+
authorname varchar(40) NOT NULL
6
6
);
7
7
8
-
INSERT INTO articletest VALUES (1, 'My Life as a Goat', 'I went to Nepal to live as a goat, and it was much better than being a butler.', 'E. Blackadder');
9
-
INSERT INTO articletest VALUES (2, 'Magnificent Octopus', 'Once upon a time there was a lovely little sausage.', 'S. Baldrick');
8
+
INSERT INTO articletest (title, content, authorname) VALUES
9
+
(
10
+
'My Life as a Goat',
11
+
'I went to Nepal to live as a goat, and it was much better than being a butler.',
12
+
'E. Blackadder'
13
+
),
14
+
(
15
+
'Magnificent Octopus',
16
+
'Once upon a time there was a lovely little sausage.',
0 commit comments