怎么写阿拉伯数字?无

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/01 21:09:59

怎么写阿拉伯数字?无
怎么写阿拉伯数字?

怎么写阿拉伯数字?无
“张”用阿拉伯数字写是5337
--数据装载
Create Table #T(Column1 varchar(20))
insert #T select '040011'
union all select '010021'
union all select '024综合'
union all select '021不知道'
union all select '031不'
union all select '不3'
union all select '知道'
--1:求包含数字,且长度为6的集合(包含了中文)
select * from #T where Column1 not like '%[0-9]%'
--select * from #T where Column1 like '%[0-9]%' --and len(Column1)=6
drop table #T