如何查找一个数据库中所有表的主键的最大值
1个回答
展开全部
select * from sysobjects where xtype='U' --表
select * from sysobjects where xtype='PK' --键
select * from sysobjects where xtype='P' --过程
等等等等。 xtype 可以在帮助里查到
select * from syscolumns a where
id = (select id from sysobjects where name='你的表')
查出某表所有字段
select * from sysobjects where xtype='PK' --键
select * from sysobjects where xtype='P' --过程
等等等等。 xtype 可以在帮助里查到
select * from syscolumns a where
id = (select id from sysobjects where name='你的表')
查出某表所有字段
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询