回答編集履歴
1
追記
test
CHANGED
@@ -7,3 +7,17 @@
|
|
7
7
|
select * from person where name collate UNICODE_CI_AI like '%テスト%'
|
8
8
|
|
9
9
|
```
|
10
|
+
|
11
|
+
追記
|
12
|
+
|
13
|
+
--
|
14
|
+
|
15
|
+
よく考えてみると大文字/小文字の識別が無いだけで全角/半角は同じにはならない気もします。
|
16
|
+
|
17
|
+
以下ではどうでしょうか。
|
18
|
+
|
19
|
+
```SQL
|
20
|
+
|
21
|
+
select * from person where upper(name) like '%テスト%'
|
22
|
+
|
23
|
+
```
|