Skip to content

Commit ffc649d

Browse files
committed
review comments
1 parent 75aa644 commit ffc649d

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SELECT id, name
22
FROM Course
3-
WHERE name ILIKE '%operating system%';
3+
WHERE name ILIKE '%operating%';
44

55
SELECT id, name
6-
FROM Student
6+
FROM Course
77
WHERE name ~* 'OPERATING';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
INSERT INTO Course values
2+
('CS119', 'OPERATING SYSTEM Principles', 'OS by Abraham Silberschatz', 7, true);
3+
4+
-- reset script
5+
DELETE FROM Course
6+
WHERE name = 'OPERATING SYSTEM Principles';

0 commit comments

Comments
 (0)