【194】PostgreSQL 14.5 编写SQL从身份证号中查找性别,并且更新性别字段。

假设有一张用户表 t_user ,该表设计如下:

id:  character varying      主键
name: character varying     姓名
idcard: character varying   身份证号
gender: smallint            性别,女是0,男是1

根据身份证号查找所有未填写性别字段的女性SQL:

select * from t_user where char_length(idcard)=18 
and gender is null 
and substring(idcard, 17, 1) in ('0','2','4','6','8');

根据身份证号查找所有未填写性别字段的男性SQL:

select * from t_user 
where char_length(idcard)=18 and gender is null 
and substring(idcard, 17, 1) in ('1','3','5','7','9');

根据身份证号更新性别字段,其中第一句是更新女性的,第二句是更新男性的。

update t_user set gender=0 
where char_length(idcard)=18 and gender is null 
and substring(idcard, 17, 1) in ('0','2','4','6','8');

update t_user set gender=1  
where char_length(idcard)=18 and gender is null 
and substring(idcard, 17, 1) in ('1','3','5','7','9');
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值