-
Notifications
You must be signed in to change notification settings - Fork 0
/
-- SQLite.sql
16 lines (15 loc) · 2.42 KB
/
-- SQLite.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- SQLite
INSERT INTO dog_walking (condition, social_encounters)
VALUES ('With Dog', 9),
('With Dog', 7),
('With Dog', 10),
('With Dog', 12),
('With Dog', 6),
('With Dog', 8),
('Without Dog', 4),
('Without Dog', 5),
('Without Dog', 3),
('Without Dog', 6),
('Without Dog', 5),
('Without Dog', 1);
SELECT * FROM dog_walking;