怎么写阿拉伯数字?无
来源:学生作业帮助网 编辑:六六作业网 时间:2025/02/02 23:44:46
怎么写阿拉伯数字?无怎么写阿拉伯数字?无怎么写阿拉伯数字?无“张”用阿拉伯数字写是5337--数据装载CreateTable#T(Column1varchar(20))insert#Tselect''0
怎么写阿拉伯数字?无
怎么写阿拉伯数字?
无
怎么写阿拉伯数字?无
“张”用阿拉伯数字写是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