mySQL regex in the where clause

前端 未结 3 1124
旧巷少年郎
旧巷少年郎 2020-12-01 23:21
SELECT telephone_number
FROM table
WHERE telephone_number REGEXP \'^1[() -]*999[() -]*999[() -]*9999$\';

how do i make so its valid for any number

3条回答
  •  忘掉有多难
    2020-12-02 00:13

    It isn't very wise to store phone numbers in a database with spaces, dashes, parentheses, etc. The most efficient way is to truncate all that garbage to a simple 10 digit number. That way you can actually store the number in an INTEGER based column instead of a VARCHAR.

提交回复
热议问题