select * from sysobjects where parent_obj in(select id from sysobjects where name='表名')
或者
exec sp_helpconstraint @objname='表名'
select * from sysobjects where parent_obj in(select id from sysobjects where name='表名')
或者
exec sp_helpconstraint @objname='表名'