create table t1

a int default 0,
b int 
)
alter table t1
drop column a
不能删除字段a,说是有个约束存在,如何做才能删除字段a ?