SQLserver、MySQL、ORCAL查询数据库、表、表中字段以及
字段类型
⼀、SQLServer命令
1、查询SQLServer中的每个数据库
SELECT * from sysdatabases
2、查询SQLServer中指定数据库的所有表名
select name from CFS.. sysobjects where  xtype='u'  #注意:CFS 是数据库名称
3、查询表中的字段以及字段类型
select COLUMN_name as name,data_type as type
from INFORMATION_SCHEMA.COLUMNS
where table_name = '表名'
⼆、MySQL命令
1、查询MySQL中的每个数据库
show DATABASES
2、查询MySQL中指定数据库的所有表名
select table_name as name
from information_schema.tables
where table_schema = '数据库名' and table_type = 'base table'
3、查询表中的字段以及字段类型
select COLUMN_NAME as name,DATA_TYPE as type from lumns where table_schema='表名'
三、ORCAL命令
1、查询ORCAL中的每个数据库
select * from v$tablespace
2、查询ORCAL中指定数据库的所有表名mysql创建表数据类型
select * from user_tables;
3、查询表中的字段以及字段类型
select column_name from user_tab_columns where table_name = 'table_name';--表名要全⼤写

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。