需要學(xué)會(huì)以下的知識(shí)點(diǎn)
啟動(dòng)方式
show databases;? ? ? ? (查詢數(shù)據(jù)庫(kù))
create database test; (創(chuàng)建數(shù)據(jù)庫(kù))
create database if not exists test; (判斷是否存在test數(shù)據(jù)庫(kù),沒有才創(chuàng)建)
create database itheima default charset utf8mb4;
drop database if exists test; (刪除test數(shù)據(jù)庫(kù)厌小,如果存在的話)
use students; (使用那個(gè)數(shù)據(jù)庫(kù))
show tables;? ? (查詢所有表)
創(chuàng)建表
查看表
查看表結(jié)構(gòu)
查詢創(chuàng)建表機(jī)構(gòu)的語(yǔ)句