使用MySQL
Posted 弥尔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用MySQL相关的知识,希望对你有一定的参考价值。
1.显示所有数据库信息
show databases;
2.显示表
use northwind; 连接northwind
show tables; 显示表
3.显示表由哪些字段组成,字段的类型
show columns from products;
4.表中的结构
desc products;
5.显示当前服务器的状态
show status;
6.显示创建数据库的语句
show create database northwind;
7.查看所有用户权限
show grants;
查看用户的权限
show grants for 你的用户;
8.显示错误信息
show errors;
9.显示警告信息
show warning;
以上是关于使用MySQL的主要内容,如果未能解决你的问题,请参考以下文章