内置数据库、表
内置表
查看表信息(所有数据库的表)select * from information_schema.TABLES
查看列信息(所有表的列表)
select * from information_schema.COLUMNS
内置表常见列说明
table_schema:数据库名称
查询sql版本
方法一:登录mysql后查询
select version()
方法二:cd到mysql安装目录下的bin目录输入cmd命令(mysql -V)
标签:内置,数据库,MySQL,mysql,版本信息,select,schema From: https://www.cnblogs.com/leooutpost/p/16734017.html