一些常用的mysql命令收集整理

2021-05-23 14:41:00 字數 737 閱讀 7926

mysql命令列是學習mysql資料庫必須要掌握的知識,下面就為您介紹了10個好用的mysql命令列,希望對您學習mysql命令列方面能有所幫助。

1、顯示資料表的結構:

mysql> describe 表名; (desc 表名)

2、建立資料表:

mysql> use 庫名; //進入資料庫

mysql> create table 表名 (欄位名 varchar(20), 欄位名 char(1));

3、刪除資料表:

mysql> drop table 表名;

4、重新命名資料表

alter table t1 rename t2;

5、顯示表中的記錄:

mysql> select * from 表名;

6、往表中插入記錄:

mysql> insert into 表名 values (」hyq」,」m」);

7、更新表中資料:

mysql-> update 表名 set 欄位名1=』a',欄位名2=』b』 where 欄位名3=』c';

8、將表中記錄清空:

mysql> delete from 表名;

9、用文字方式將資料裝入資料表中:

mysql> load data local infile 「d:/mysql.txt」 into table 表名;

10、 顯示表的定義,還可以看到表的約束,例如外來鍵

以上就是10大常用mysql命令列的介紹。

收集整理一些常用的MySQL命令

mysql命令列是學習mysql資料庫必須要掌握的知識,下面就為您介紹了10個好用的mysql命令列,希望對您學習mysql命令列方面能有所幫助。1 顯示資料表的結構 mysql describe 表名 desc 表名 2 建立資料表 mysql use 庫名 進入資料庫 mysql create ...

收集一些Android 常用的adb命令

adb logcat 看日誌 adb install 應用路徑 安裝應用 adb install r 應用路徑 安裝應用,保留原來的資料 版本號要高於或等於原來的版本號 adb uninstall 應用包名 解除安裝應用 adb reboot 重啟裝置 adb shell ping 192.186....

mysql一些命令 mysql常用的一些命令

一 授權登入 參考grant all privileges on cacti.to hnf localhost identified by hnf 2014 只給cacti這個資料庫授權 grant all on to root localhost identified by huningfei 只...