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;
相关推荐
CoderToy 2020-11-16
emmm00 2020-11-17
王艺强 2020-11-17
ribavnu 2020-11-16
bianruifeng 2020-11-16
wangshuangbao 2020-11-13
苏康申 2020-11-13
vivenwan 2020-11-13
moyekongling 2020-11-13
云中舞步 2020-11-12
要啥自行车一把梭 2020-11-12
aydh 2020-11-12
kuwoyinlehe 2020-11-12
minerk 2020-11-12
vitasfly 2020-11-12
jazywoo在路上 2020-11-11
敏敏张 2020-11-11
世樹 2020-11-11