mysql快捷鍵 MYSQL快捷鍵使用大全 DOC

2021-10-25 14:16:37 字數 2192 閱讀 8811

mysql常用命令

1.匯出整個資料庫

mysqldump -u 使用者名稱 -p --default-character-set=latin1 資料庫名 > 匯出的檔名(資料庫預設編碼是latin1)

2.匯出乙個表

mysqldump -u 使用者名稱 -p 資料庫名 表名》 匯出的檔名

3.匯出乙個資料庫結構

-d 沒有資料 –add-drop-table 在每個create語句之前增加乙個drop table

4.匯入資料庫

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 ( [,.. ]);

mysql> create table myclass(

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

> name char(20) not null,

> *** int(4) not null default '0',

> 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 [( [,.. ])] values ( 值1 )[, ( 值n )]

例如,往表 myclass中插入二條記錄, 這二條記錄表示:編號為1的名為tom的成績為96.45, 編號為2 的名為joan 的成績為82.99,編號為3 的名為wang 的成績為96.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 中前2行

MySQL快捷鍵及幫助

幫助 c 終止當前命令 r 重連資料庫 d 修改命令結束符 e 寫入檔案,同時執行多條命令 g 垂直顯示結果 q 退出資料庫 g 命令結束 h 幫助 t 取消寫入檔案 t 將執行過程與結果寫入乙個檔案 p 列印一次命令 r 修改命令提示符 source 讀取sql檔案 status s 檢視資料庫狀...

mac快捷鍵 xcode快捷鍵

快捷鍵圖示 com w關閉當前頁面 ctrl com com tab 切換程式 com option確定進入程式 option com 0開啟右邊使用工具欄 command option esc 開啟強制退出視窗 com option esc開啟強制退出 com 0 開啟導航器 com shift ...

idea快捷鍵 Alt Shift 快捷鍵

alt shift n 選擇 新增 task 必備 alt shift f 顯示新增到收藏夾彈出層 新增到收藏夾 alt shift c 檢視最近操作專案的變化情況列表 alt shift i 檢視專案當前檔案 alt shift f7在 debug 模式下,下一步,進入當前方法體內,如果方法體還有...