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

MySQL regexp는 문자열 또는 숫자가 혼합된 문자열이 있는 레코드만 표시합니다. 숫자 레코드만 무시

<시간/>

이를 위해 REGEXP를 사용할 수 있습니다. 다음은 구문입니다 -

select yourColumnName from yourTableName where yourColumnName REGEXP '[a−zA&minu;Z]';

테이블을 만들어 봅시다 -

mysql> create table demo41
−> (
−> name varchar(40)
−> );
Query OK, 0 rows affected (0.64 sec)

insert 명령을 사용하여 일부 레코드를 테이블에 삽입하십시오 -

mysql> insert into demo41 values('John Smith34')
−> ;
Query OK, 1 row affected (0.13 sec)
mysql> insert into demo41 values('John Smith');
Query OK, 1 row affected (0.11 sec)
mysql> insert into demo41 values('9234John Smith');
Query OK, 1 row affected (0.14 sec)
mysql> insert into demo41 values('john smith');
Query OK, 1 row affected (0.23 sec)
mysql> insert into demo41 values('98775');
Query OK, 1 row affected (0.15 sec)

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

mysql> select *from demo41;

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

+----------------+
| name           |
+----------------+
| John Smith34   |
| John Smith     |
| 9234John Smith |
| john smith     |
| 98775          |
+----------------+
5 rows in set (0.00 sec)

다음은 MySQL regexp에 대한 쿼리입니다 -

mysql> select name from demo41 where name REGEXP '[a−zA−Z]';

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

+----------------+
| name           |
+----------------+
| John Smith34   |
| John Smith     |
| 9234John Smith |
| john smith     |
+----------------+
4 rows in set (0.00 sec)