mysql的简单语句
Posted abadrabbit
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql的简单语句相关的知识,希望对你有一定的参考价值。
1.查看路径
show variables like ‘datadir‘;
2.show databases;
3.create database course;
4.use course;
5.create table student(id type);
6.show full fields from student;
7.show grants;
8.mysqldump -uroot -p course >E:sql1/mysql.bak.sql
9.drop table student;
10. source E:sql1/mysql.bak.sql
11.drop database course;
以上是关于mysql的简单语句的主要内容,如果未能解决你的问题,请参考以下文章