Skip to content

Commit 75aa644

Browse files
committed
addressed review comments
1 parent 4d1f59f commit 75aa644

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
SELECT id, name
2-
FROM Student
3-
WHERE name COLLATE Latin1_General_CI_AS like '%PHIL%';
2+
FROM Course
3+
WHERE name COLLATE Latin1_General_CI_AS like '%OPERATING%';
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SELECT id, name
2-
FROM Student
3-
WHERE REGEXP_LIKE(name, 'PHIL', 'i');
2+
FROM Course
3+
WHERE REGEXP_LIKE(name, 'OPERATING', 'i');
44

55
SELECT id, name
6-
FROM Student
7-
WHERE name COLLATE utf8mb4_general_ci LIKE '%PHIL%';
6+
FROM Course
7+
WHERE name COLLATE utf8mb4_general_ci LIKE '%OPERATING%';
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SELECT id, name
2-
FROM Student
3-
WHERE name ILIKE '%phil%';
2+
FROM Course
3+
WHERE name ILIKE '%operating system%';
44

55
SELECT id, name
66
FROM Student
7-
WHERE name ~* 'PHIL';
7+
WHERE name ~* 'OPERATING';
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
SELECT id, name
2-
FROM Student
2+
FROM Course
33
WHERE LOWER(name) LIKE '%phil%';

0 commit comments

Comments
 (0)