mysql查询表名和列名字
Posted Withfeel
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql查询表名和列名字相关的知识,希望对你有一定的参考价值。
-- 登录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查询表名和列名字的主要内容,如果未能解决你的问题,请参考以下文章
由于在 MySQL 中使用保留字作为表名或列名导致的语法错误