MySQL常用命令
Posted 阿糖呀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL常用命令相关的知识,希望对你有一定的参考价值。
1 查询库 show databases;
2 切换库 use mysql;
3 查看库里的表 show tables;
4 查看表里的字段 desc tb_name;
5查看建表语句 show create table tb_name\\G
6 查看当前用户 select user();
7查看当前使用的数据库 select database();
8 创建库 create database db1;
9 创建表 use db1; create table t1(`id` int(4), `name` char(40));
10 查看当前数据库版本 select version();
11 查看数据库状态 show status;
12 查看各参数 show variables; show variables like 'max_connect%';
13修改参数 set global max_connect_errors=1000;
14 查看队列 show processlist; show full processlist;
以上是关于MySQL常用命令的主要内容,如果未能解决你的问题,请参考以下文章