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

MySQL이 있는 셀에 특정 국가 코드가 있는지 확인하는 방법은 무엇입니까?

<시간/>

특정 값에 대해서는 FIND_IN_SET()을 사용하십시오. 먼저 −

를 생성해 보겠습니다.
mysql> create table DemoTable1439
   -> (
   -> CountryId int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   -> CountryCode varchar(20)
   -> );
Query OK, 0 rows affected (0.49 sec)

insert −

를 사용하여 테이블에 일부 레코드 삽입
mysql> insert into DemoTable1439(CountryCode) values('1022_US,7894_UK');
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable1439(CountryCode) values('6567_AUS,7894_UK');
Query OK, 1 row affected (0.13 sec)
mysql> insert into DemoTable1439(CountryCode) values('6567_AUS');
Query OK, 1 row affected (0.09 sec)

select −

를 사용하여 테이블의 모든 레코드 표시
mysql> select * from DemoTable1439;

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

+-----------+------------------+
| CountryId | CountryCode      |
+-----------+------------------+
|         1 | 1022_US,7894_UK  |
|         2 | 6567_AUS,7894_UK |
|         3 | 6567_AUS         |
+-----------+------------------+
3 rows in set (0.00 sec)

다음은 셀에 국가 코드가 있는지 확인하는 쿼리입니다 -

mysql> select * from DemoTable1439
   -> where find_in_set('6567_AUS',CountryCode) > 0;

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

+-----------+------------------+
| CountryId | CountryCode      |
+-----------+------------------+
|         2 | 6567_AUS,7894_UK |
|         3 | 6567_AUS         |
+-----------+------------------+
2 rows in set (0.00 sec)