当前位置:Gxlcms > 数据库问题 > SQL Server 查询表的主键的两种方式

SQL Server 查询表的主键的两种方式

时间:2021-07-01 10:21:17 帮助过:71人阅读

b.column_name from information_schema.table_constraints a inner join information_schema.constraint_column_usage b on a.constraint_name = b.constraint_name where a.constraint_type = PRIMARY KEY and a.table_name = products go

 


方式2:

SELECT a.name 
  FROM   syscolumns a 
  inner  join sysobjects d on a.id=d.id       
  where  d.name=products and exists(SELECT 1 FROM sysobjects where xtype=PK and  parent_obj=a.id and name in (  
  SELECT name  FROM sysindexes   WHERE indid in(  
  SELECT indid FROM sysindexkeys WHERE id = a.id AND colid=a.colid  
)))

 

方式3:

SELECT TABLE_NAME,COLUMN_NAME FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE   
WHERE TABLE_NAME=PDA_xjData 

 

SQL Server 查询表的主键的两种方式

标签:mat   and   products   type   方式   查询   data   str   where   

人气教程排行