码迷,mamicode.com
首页 > 数据库 > 详细

mysql查询表名和列名字

时间:2019-10-09 12:34:41      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:mat   span   table   字段名   orm   ase   指定表   普通表   sql查询   

-- 登录yellowcong 数据库

mysql -uroot -proot yellowcong

? ?

-- 查看当前数据库

select database()

? ?

-- 查看数据库里面的表

--table_schema 当前的数据库

--table_type=‘base table‘ 表示基础的普通表

SELECT table_name FROM information_schema.tables WHERE table_schema=‘yellowcong‘ AND table_type=‘base table‘;

? ?

? ?

-- 查询指定数据库中指定表的所有字段名column_name

-- 查看列的名称

SELECT column_name FROM information_schema.columns WHERE table_schema=‘yellowcong‘ AND table_name=‘sys_user‘;

mysql查询表名和列名字

标签:mat   span   table   字段名   orm   ase   指定表   普通表   sql查询   

原文地址:https://www.cnblogs.com/withfeel/p/11640817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!