使用SQL查询所有数据库名和表名

PHPz
发布: 2018-09-30 11:27:28
转载
2000 人浏览过

MySQL中查询所有数据库名和表名

查询所有数据库

<span style="font-size: 14px;">show databases;<br/></span>
登录后复制

查询指定数据库中所有表名

<span style="font-size: 14px;">select table_name from information_schema.tables where table_schema=&#39;database_name&#39; and table_type=&#39;base table&#39;;<br/></span>
登录后复制

查询指定表中的所有字段名

<span style="font-size: 14px;">select column_name from information_schema.columns where table_schema=&#39;database_name&#39; and table_name=&#39;table_name&#39;;<br/></span>
登录后复制

查询指定表中的所有字段名和字段类型

<span style="font-size: 14px;">select column_name,data_type from information_schema.columns where table_schema=&#39;database_name&#39; and table_name=&#39;table_name&#39;;<br/></span>
登录后复制

SQLServer中查询所有数据库名和表名

查询所有数据库

<span style="font-size: 14px;">select * from sysdatabases;<br/></span>
登录后复制

查询当前数据库中所有表名

<span style="font-size: 14px;">select * from sysobjects where xtype=&#39;U&#39;;<br/>xtype=&#39;U&#39;:表示所有用户表,xtype=&#39;S&#39;:表示所有系统表。<br/></span>
登录后复制

查询指定表中的所有字段名

<span style="font-size: 14px;">select name from syscolumns where id=Object_Id(&#39;table_name&#39;);<br/></span>
登录后复制

查询指定表中的所有字段名和字段类型

<span style="font-size: 14px;">select sc.name,st.name from syscolumns sc,systypes st where sc.xtype=st.xtype and sc.id in(select id from sysobjects where xtype=&#39;U&#39; and name=&#39;table_name&#39;);<br/></span>
登录后复制

Oracle中查询所有数据库名和表名

查询所有数据库

由于Oralce没有库名,只有表空间,所以Oracle没有提供数据库名称查询支持,只提供了表空间名称查询。

<span style="font-size: 14px;">select * from v$tablespace;--查询表空间(需要一定权限)<br/></span>
登录后复制

查询当前数据库中所有表名

<span style="font-size: 14px;">select * from user_tables;<br/></span>
登录后复制

查询指定表中的所有字段名

<span style="font-size: 14px;">select column_name from user_tab_columns where table_name = &#39;table_name&#39;;<br/></span>
登录后复制

查询指定表中的所有字段名和字段类型

<span style="font-size: 14px;">select column_name, data_type from user_tab_columns where table_name = &#39;table_name&#39;;<br/></span>
登录后复制

更多相关教程请访问   MySQL视频教程

相关标签:
来源:csdn.net
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板