MySql命令的基本操作
时间:2014-01-17 08:56:04
收藏:0
阅读:368
MySQL的基本命令:
登录:mysql -u root -p
password:*****;
查询所有数据库:show databases;
使用数据库:use databaseName;
查看所有表:show tables;
原文:http://www.cnblogs.com/tonge/p/3522938.html
评论(0)