Skip to content

Commit 65527d8

Browse files
authored
Merge pull request #293 from yadavan88/case-insensitive-search
Quries for case insensitive search
2 parents e6d7d0e + ffc649d commit 65527d8

File tree

5 files changed

+26
-0
lines changed

5 files changed

+26
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SELECT id, name
2+
FROM Course
3+
WHERE name COLLATE Latin1_General_CI_AS like '%OPERATING%';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
SELECT id, name
2+
FROM Course
3+
WHERE REGEXP_LIKE(name, 'OPERATING', 'i');
4+
5+
SELECT id, name
6+
FROM Course
7+
WHERE name COLLATE utf8mb4_general_ci LIKE '%OPERATING%';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
SELECT id, name
2+
FROM Course
3+
WHERE name ILIKE '%operating%';
4+
5+
SELECT id, name
6+
FROM Course
7+
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';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SELECT id, name
2+
FROM Course
3+
WHERE LOWER(name) LIKE '%phil%';

0 commit comments

Comments
 (0)