1:根据身份证号 更新 生日字段 SQL

update 学生信息 set 生日=substring(身份证号,,)+'-'+substring(身份证号,,)+'-'+substring(身份证号,,)
where LEN(身份证号)=

2:根据身份证号 更新 性别字段 SQL

update 学生信息 set 性别='男'
where LEN(身份证号)= and substring(身份证号,,)%=
update 学生信息 set 性别='女'
where LEN(身份证号)= and substring(身份证号,,)%=
05-01 23:35