直接说明问题。我有一张存储身份证号码的表id_card_message,表结构和数据如下(MySQL5.7.14):
mysql> select * from id_card_message; +------+--------------------+ | id | id_card_no | +------+--------------------+ | 1 | 342513199411222515 | | 1 | 342624197812023498 | | 1 | 310908198910123348 | +------+--------------------+
现在根据这个身份证号码的倒数第二位来显示出男女信息,我按照下面的SQL语句执行,结果报出相应的错误:
1 mysql> select case substr(id_card_no,17,1) 2 3 -> when (1,3,5,7,9) then '男' 4 5 -> when (0,2,4,6,8) then '女' end 'sex', 6 7 -> id_card_no 8 9 -> from id_card_message; 10 11 ERROR 1241 (21000): Operand should contain 1 column(s)
错误提示我:操作数应该包含一列。这里只能怀疑是when子句后面括号内的值过多的原因造成的,那么这种case when结构下,when子句后面只能出现一个值吗?查了以下官方文档在13.6.5.1节的case语法,貌似对这个没有说明。
当然,换种语句格式,一样能得到所需要的数据。如下:
1 mysql> select 2 3 -> case 4 5 -> when substr(id_card_no,17,1) in (1,3,5,7,9) then '男' 6 7 -> when substr(id_card_no,17,1) in (0,2,4,6,8) then '女' end 'sex', 8 9 -> id_card_no 10 11 -> from id_card_message; 12 13 +------+--------------------+ 14 15 | sex | id_card_no | 16 17 +------+--------------------+ 18 19 | 男 | 342623199610222515 | 20 21 | 男 | 342624197812023498 | 22 23 | 女 | 310908198910123348 | 24 25 +------+--------------------+
现在的想法就是,在“CASE value WHEN compare value”的格式下,when子句后面的compare value只能是单个值,不能接多个值。例如上面的compare value的值有1,3,5,7,9。这种情况下只能采用上面的SQL。