标签:
库操作:
创建数据库:create database 库名;
查询数据库:show databases;
删除数据库:drop database 库名;
使用某个数据库:use 库名;
+++++++++++++++++++++++++
表操作:
查看表:show tables;
MySQL
原文地址:http://www.cnblogs.com/fancongcong/p/4906579.html