MySQL資料庫操作命令大全,mysql命令大全
特別注意:MySQL資料庫不分大小寫
1、建立資料庫:create database Thinkgamer;
2、刪除資料庫:drop database Thinkgamer;
3、選擇使用某個資料庫:use Thinkgamer;
4、建立資料表:
mysql>create table cyan
->(
->學號 int(3) not null primary key,
->姓名 char(3);
->性別 char(1) not null default 1
->)engine = innodb;
斷行符號即可,not null 設定該欄位不可為空,primary key是設定主鍵,default 預設名字為1。
5、刪除表:drop table cyan;
6、往表中添加列:alter table cyan add 愛好 char(20);
7、顯示該表的相關資訊:describe cyan;
8、顯示某列資訊:select 學號 from cyan;
9、往表裡添加資訊:insert cyan values("111","Thinkgamer","女","舞蹈");
10、修改一個表某行資訊:
mysql>update cyan
->set 性別=" 男”,愛好="羽毛球"
->where 學號=111;
斷行符號即可。
1、修改多個表的某個資訊:
mysql>update table_name1,table_name2
->set table_name1.性別=" 男”,table_name2.性別="女"
->where table_name1.id = table_name2.id;
斷行符號即可。
12、刪除某行:delete from cyan where 學號=111;
13、刪除性別為女的人:delete from cyan where 性別=女;
14、刪除多表中的多行:
mysql>delete table1,table2
->from table1,table2,table3
->where table1.id=table2.id and table2.id=table3.id;
斷行符號即可。
15、清除表中資料:truncate table cyan;
注意:資料一旦清除,不可恢複。
其他:
select user(); 顯示目前使用者。
select @@version; 顯示資料庫版本。
show cyan status; 顯示當前所用表的狀態
show character set; 顯示資料庫支援的字元集
show variables like '%char%' 查看預設字元集
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。