文章目录
前言
工作中如果和第三方做接口或者抽取数据,经常会用到不同的数据库的表结构信息以及列信息查询,本篇将简单总结一下oracle,mysql,sqlsever
的表结构信息查询。
1. oracle数据库
1.1 表信息和注释信息
--查询出就3列,表名,表类型表或者视图,表注释
select * from user_tab_comments
1.2 表的列信息
SELECT * FROM USER_TAB_COLUMNS WHERE TABLE_NAME = '表名'
输出信息包括:
列名称,列类型,列长度,精度等信息
2. mysql数据库
2.1 常用的几个命令
#查看数据库
show databases;
# 使用数据库
use databasename;
# 查看数据库下的表
show tables;
# 查看表结构
desc table_name
2.2 使用desc查看表结构
mysql> desc psn;
+---------+---------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+---------+---------+------+-----+---------+-------+
| id | int(11) | NO | | NULL | |
| name | text | YES | | NULL | |
| address | text | YES | | NULL | |
+---------+---------+------+-----+---------+-------+
2.3 表结构信息主要存在information_schema数据库
2.4 主要表是columns,tables,schemata
2.4.1 schemata 数据库信息
select * from information_schema.SCHEMATA s
2.4.2 tables表信息
select * from information_schema.TABLES t where t.TABLE_SCHEMA ='databasename'
2.4.3 columns列信息
select * from information_schema.`COLUMNS` c where c.TABLE_SCHEMA='databasename' and TABLE_NAME='table_name'
列信息:
3.sqlsever数据库
select * from information_schema.columns where table_name='表名'