Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

MySQL에서 5자리 숫자(정규식)로 시작하는 모든 이메일 주소를 선택하십시오.

<시간/>

5자리 숫자로 시작하는 이메일 주소를 얻으려면 선택적인 솔루션은 REGEXP −

를 사용하는 것입니다.
select *from yourTableName where yourColumnName regexp "^[0-9]{5}";

먼저 테이블을 생성하겠습니다 -

mysql> create table DemoTable
(
   UserEmailAddress varchar(100)
);
Query OK, 0 rows affected (0.76 sec)

삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -

mysql> insert into DemoTable values('[email protected]');
Query OK, 1 row affected (0.15 sec)
mysql> insert into DemoTable values('[email protected]');
Query OK, 1 row affected (0.12 sec)
mysql> insert into DemoTable values('[email protected]');
Query OK, 1 row affected (0.17 sec)
mysql> insert into DemoTable values('[email protected]');
Query OK, 1 row affected (0.43 sec)
mysql> insert into DemoTable values('[email protected]');
Query OK, 1 row affected (0.20 sec)

select 문을 사용하여 테이블의 모든 레코드 표시 -

mysql> select *from DemoTable;

이것은 다음과 같은 출력을 생성합니다 -

+----------------------------+
| UserEmailAddress           |
+----------------------------+
| [email protected]         |
| [email protected]       |
| [email protected] |
| [email protected]           |
| [email protected]        |
+----------------------------+
5 rows in set (0.00 sec)

다음은 5자리 숫자로 시작하는 모든 이메일 주소를 선택하는 쿼리입니다 -

mysql> select *from DemoTable where UserEmailAddress regexp "^[0-9]{5}";

이것은 다음과 같은 출력을 생성합니다 -

+----------------------------+
| UserEmailAddress           |
+----------------------------+
| [email protected] |
| [email protected]        |
+----------------------------+
2 rows in set (0.00 sec)