MYSQL 命令列大全 簡潔 明了 全面

2021-09-17 07:10:26 字數 2924 閱讀 4776

匯入資料庫  

a:常用source 命令

進入mysql資料庫控制台,

如mysql -u root -p

mysql>use 資料庫

然後使用source命令,後面引數為指令碼檔案(如這裡用到的.sql)

mysql>source wcnc_db.sql

b:使用mysqldump命令

mysqldump -u username -p dbname < filename.sql

c:使用mysql命令

mysql -u username -p -d dbname < filename.sql

一、啟動與退出

1、進入mysql:啟動mysql command line client(mysql的dos介面),直接輸入安裝時的密碼即可。此時的提示符是:mysql>

2、退出mysql:quit或exit

二、庫操作

1、、建立資料庫

命令:create database 《資料庫名》

例如:建立乙個名為xhkdb的資料庫

mysql> create database xhkdb;

2、顯示所有的資料庫

命令:show databases (注意:最後有個s)

mysql> show databases;

3、刪除資料庫

命令:drop database 《資料庫名》

例如:刪除名為 xhkdb的資料庫

mysql> drop database xhkdb;

4、連線資料庫

命令:use 《資料庫名》

例如:如果xhkdb資料庫存在,嘗試訪問它:

mysql> use xhkdb;

5、檢視當前使用的資料庫

mysql> select database();

6、當前資料庫包含的表資訊:

mysql> show tables; (注意:最後有個s)

三、表操作,操作之前應連線某個資料庫

1、建表

命令:create table 《表名》 ( 《欄位名》 《型別》 [,..《欄位名n> 《型別n>]);

mysql> create table myclass(

> id int(4) not null primary key auto_increment,

> name char(20) not null,

> *** int(4) not null default 』′,

> degree double(16,2));

2、獲取表結構

命令:desc 表名,或者show columns from 表名

mysql>describe myclass

mysql> desc myclass;

mysql> show columns from myclass;

3、刪除表

命令:drop table 《表名》

例如:刪除表名為 myclass 的表

mysql> drop table myclass;

4、插入資料

命令:insert into 《表名》 [( 《欄位名》[,..《欄位名n > ])] values ( 值 )[, ( 值n )]

例如,往表 myclass中插入二條記錄, 這二條記錄表示:編號為的名為tom的成績為.45, 編號為 的名為joan 的成績為.99,編號為 的名為wang 的成績為.5.

mysql> insert into myclass values(1,』tom』,96.45),(2,』joan』,82.99), (2,』wang』, 96.59);

5、查詢表中的資料

1)、查詢所有行

命令:select 《字段,字段,…> from < 表名 > where < 表示式 >

例如:檢視表 myclass 中所有資料

mysql> select from myclass;

2)、查詢前幾行資料

例如:檢視表 myclass 中前行資料

mysql> select from myclass order by id limit 0,2;

或者:

mysql> select from myclass limit 0,2;

6、刪除表中資料

命令:delete from 表名 where 表示式

例如:刪除表 myclass中編號為 的記錄

mysql> delete from myclass where id=1;

7、修改表中資料:update 表名 set 字段=新值,…where 條件

mysql> update myclass set name=』mary』where id=1;

7、在表中增加字段:

命令:alter table 表名 add欄位 型別 其他;

例如:在表myclass中新增了乙個欄位passtest,型別為int(4),預設值為

mysql> alter table myclass add passtest int(4) default 』′

8、更改表名:

命令:rename table 原表名 to 新錶名;

例如:在表myclass名字更改為youclass

mysql> rename table myclass to youclass;

更新字段內容

update 表名 set 欄位名 = 新內容

update 表名 set 欄位名 = replace(欄位名,』舊內容』,』新內容』)

微mysql命令列 mysql命令大全

mysql命令大全 02 05 啟動 net start mysql 進入 mysql u root p mysql h localhost u root p databasename 列出資料庫 show databases 選擇資料庫 use databasename 列出 show table...

Ruby 命令列大全

ruby 一般是從命令列執行,方式如下 ruby options programfile arguments 直譯器可以通過下列選項被呼叫,來控制直譯器的環境和行為。選項描述 a與 n 或 p 一起使用時,可以開啟自動拆分模式 auto split mode 請檢視 n 和 p 選項。c只檢查語法,...

Linux 命令列大全

linux常用命令英文全稱與中文解釋linux系統 man manual 意思是手冊,可以用這個命令查詢其他命令的用法。pwd print working directory 列印工作目錄 su swith user 切換使用者,切換到root使用者 cd change directory 切換目錄...