oracle
1、查找表php数据库外健的所有索引(包括索引名php数据库外?。嘈?,构成列)php数据库外?。?
select t.*,i.index_type from user_ind_columns t,user_indexes i where t.index_name = i.index_name and t.table_name = i.table_name and t.table_name = 要查询的表
2、查找表的主键(包括名称,构成列)php数据库外?。?
select cu.* from user_cons_columns cu, user_constraints au where cu.constraint_name = au.constraint_name and au.constraint_type = 'P' and au.table_name = 要查询的表
3、查找表的唯一性约束(包括名称 , 构成列):
select column_name from user_cons_columns cu, user_constraints au where cu.constraint_name = au.constraint_name and au.constraint_type = 'U' and au.table_name = 要查询的表
4、查找表的外键(包括名称,引用表的表名和对应的键名 , 下面是分成多步查询):
select * from user_constraints c where c.constraint_type = 'R' and c.table_name = 要查询的表
查询外键约束的列名:
select * from user_cons_columns cl where cl.constraint_name = 外键名称
查询引用表的键的列名:
select * from user_cons_columns cl where cl.constraint_name = 外键引用表的键名
5、查询表的所有列及其属性
select t.*,c.COMMENTS from user_tab_columns t,user_col_comments c where t.table_name = c.table_name and t.column_name = c.column_name and t.table_name = 要查询的表
6、查询所有表
select* from tabs
关于php数据库外健和php数据库后门的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息 , 记得收藏关注本站 。
推荐阅读
- javascript前端时序,前端时间戳
- html标签怎么画竖条,html中li标签怎么设置横排
- 公众号发布文章有什么限制,公众号发布文章有什么限制吗
- oracle新建索引,oracle新建索引语句
- go语言填写调查问卷库 go语言系统调用
- js原生代码怎么打包,js源代码
- 欧卡模拟游戏3加油,欧卡模拟3什么时候出
- 银行区块链场景低频,银行区块链是什么意思?
- mysql怎么写数据语句 mysql数据库怎么写