5个回答
展开全部
可以参考下面的代码
SELECT t.* from user_cons_columns t where t.table_name = '表名' and t.position is not null; --表名必zd须大写,如:
TABLE_TEST ,column即为用户的主键,user_cons_columns即为用户要的主键名。
扩展资料:
SQL语句
添加主键
Alter table tabname add primary key(col)
说明:删除主键:Alter table tabname drop primary key(col)
创建索引
create [unique] index idxname on tabname(col…。)
删除索引:drop index idxname on tabname
参考资料来源:百度百科-SQL语句大全
展开全部
如果方便的话,可以查看表结构。
或者利用系统表sysobjects查询。
select * from sysobjects where parent_obj in (select id from sysobjects where name='表名')
and xtype='pk'
或者利用系统表sysobjects查询。
select * from sysobjects where parent_obj in (select id from sysobjects where name='表名')
and xtype='pk'
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-10-21
展开全部
用系统表查:
select * from sysobjects where parent_obj in (
select id from sysobjects where name='表名')
and xtype='pk'
select * from sysobjects where parent_obj in (
select id from sysobjects where name='表名')
and xtype='pk'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
查看表结构啊!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询