15-18之间
select * from 表名 where len(身份证号) between 15 and 18
15以下
select * from 表名 where len(身份证号) <15
18以上
select * from 表名 where len(身份证号) >18
15-18之间
select * from 表名 where len(身份证号) between 15 and 18
15以下
select * from 表名 where len(身份证号) <15
18以上
select * from 表名 where len(身份证号) >18