(注意:所有命令不區分大小寫)
1.建立資料庫mydb
create database mydb;
2.檢視所有資料庫
show databases;
3.檢視建立的資料庫
show create database mydb;
4.選擇資料庫
use mydb;
5.建立資料表student
create table student(
name varchar(10)comment』名字』,
*** varchar(2)comment』性別』,
dianhua int(25)comment』**』);
6.檢視資料表new_class
use database mydb;
create table new_class(
name varchar(10)comment』姓名』,
class int(4)comment』班級』);
show tables like』%new%』;
7.檢視資料表student相關資訊
show table status from mydb like』%stu%』\g
8.修改資料表student
修改資料表名稱
rename table student to student2;
或者 alter table student rename to student2;
或者 alter table student rename as student2;
修改表選項 alter table 表名 表選項 [=] 值;
9.檢視表結構
檢視資料表student2的字段資訊
desc student2;
檢視資料表的建立語句
show create table student2\g
檢視資料表結構
show full columns from student2;
10.10.修改表結構
修改欄位名 alter table student2 change *** home varchar(230);
修改字段型別 alter table student2 modify home char(23);
修改字段位置 alter table student2 modify dianhua int(25) after name;
新增字段 alter table student2 add birthplace int after dianhua;
刪除字段 alter table student2 drop dianhua;
11.刪除資料表student2;
drop table student2;
12.刪除資料庫mydb
drop database mydb;
基礎命令入門
1 退出和登出 exit和logout命令都可以退出當前登入狀態,登出使用者身份。exit和quit也可用來實現命令的退出或結束的作用,不同的命令,退出命令不同。如bc 使用quit 退出 2 關機 halt poweroff reboot p shutdown h now3 reboot 重啟 r...
mysql基礎入門
登入mysql mysql h ip u使用者名稱 p 或者 mysql u使用者名稱 p密碼 檢視資料庫 show databases 很多資料庫,故databases 其中 information schema mysql perfornance schema資料不能修改,系統自帶 選中乙個資料...
MySQL基礎入門
資料庫 database 是按照資料結構來組織 儲存和管理資料的倉庫。每個資料庫都有乙個或多個不同的 api 用於建立,訪問,管理,搜尋和複製所儲存的資料。我們也可以將資料儲存在檔案中,但是在檔案中讀寫資料速度相對較慢。所以,現在我們使用關係型資料庫管理系統 rdbms 來儲存和管理的大資料量。所謂...