use master
go
create table t5
(
sid int not null,
sname varchar(20)
)
go
alter table t5
add constraint ck01 check(sname like '[0-9]
[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]')
goinsert into t5(sid,sname) values (101, '05126263626')
go为什么插入不进去值老是报下面的错误:

消息 547,级别 16,状态 0,第 1 行
INSERT 语句与 CHECK 约束"ck01"冲突。该冲突发生于数据库"master",表"dbo.t5", column 'sname'。
语句已终止。