create database first_db; -- 創(chuàng)建數(shù)據(jù)庫
show databases; -- 顯示所有的數(shù)據(jù)庫
show create database first_db; -- 顯示創(chuàng)建數(shù)據(jù)庫細(xì)節(jié)
-- drop database if exists first_db; -- 刪除數(shù)據(jù)庫
use first_db;
show tables ;
create table studentInfo (
name varchar(10) ,
sex varchar(2),
age int ,
location VARCHAR(30)
);
show tables;
desc studentinfo; -- 描述表的結(jié)構(gòu)
quit;
show databases;
mysqldump -uroot -proot first_db > d:/fitst_db_back.sql -- 手動備份