sql语句,怎么查看一个表中的所有约束

2024-12-16 11:21:54
推荐回答(3个)
回答1:

sp_mshelpcolumns student
如上可以看到该表的所有结构、约束、默认值等

回答2:

select * from sysobjects where parent_obj in(
select id from sysobjects where name='student')

回答3:

exec sp_helpconstraint @objname= 表名