2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【MySQL】文字列内のスペースを無視して検索する

Posted at
  • テストユーザ   <- スペースなし
  • テスト ユーザ  <- 全角スペース
  • テスト  ユーザ <- 全角スペース2個
  • テスト ユーザ   <- 半角スペース

これをまとめて検索したい。

解決方法

正規表現を使う。

MySQL 5.6 リファレンスマニュアル 12.5.2 正規表現
https://dev.mysql.com/doc/refman/5.6/ja/regexp.html

mysql> select * from user where name regexp 'テスト( | )*ユーザ';
+----+------------------+
| id | name             |
+----+------------------+
|  1 | テストユーザ     |
|  2 | テスト ユーザ   |
|  3 | テスト  ユーザ |
|  4 | テスト ユーザ    |
+----+------------------+

スペースが入っているものに限定するならこう。

mysql> select * from user where name regexp 'テスト( | )+ユーザ';
+----+------------------+
| id | name             |
+----+------------------+
|  2 | テスト ユーザ   |
|  3 | テスト  ユーザ |
|  4 | テスト ユーザ    |
+----+------------------+
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?