如何使用MySQL检查单元格中是否存在特定的国家/地区代码?
对于特定值,请使用FIND_IN_SET()。让我们首先创建一个-
mysql> create table DemoTable1439 -> ( -> CountryId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> CountryCode varchar(20) -> );
使用insert在表中插入一些记录-
mysql> insert into DemoTable1439(CountryCode) values('1022_US,7894_UK'); mysql> insert into DemoTable1439(CountryCode) values('6567_AUS,7894_UK'); mysql> insert into DemoTable1439(CountryCode) values('6567_AUS');
使用选择显示表中的所有记录-
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)