连接MySQL
// localmysql -u root -p// remotemysql -h ipaddress -P 3306 -u username -p
查看MySQL
// 显示所有数据库show databases;// 选择某一数据库use db_name;// 显示数据库中所有表show tables;// 显示表中所有列show columns from table_one;// 显示索引show index from table_one;
操作MySQL
// 查看端口号show global variables like 'port';// 查看数据库编码show variables like 'character%';// 查看进程SHOW processlist