mysql基礎知識

2021-06-22 12:57:52 字數 3428 閱讀 7911

一、啟動與退出

1、進入mysql:

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

或開啟終端,輸入sql語句:

mysql –uroot –p123

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)

7、建立使用者並賦予取予權利:

grant all privileges on dbname.* to username@localhost identified by 『pwd123′;

給localhost域的使用者username管理dbname資料庫的所有權利,密碼為pwd123。

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

1、建表

命令:create table 《表名》 ( 《欄位名1> 《型別1> [,..《欄位名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 '0',

> degree double(16,2));

2、獲取表結構

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

mysql> desc myclass;

mysql> show columns from myclass;

3、刪除表

命令:drop table 《表名》

例如:刪除表名為 myclass 的表

mysql> drop table myclass;

4、插入資料

命令:insert into 《表名》 [( 《欄位名1>[,..《欄位名n > ])] 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 《欄位1,欄位2,...> from < 表名 > where < 表示式 >

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

mysql> select * from myclass;

2)、查詢前幾行資料

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

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

6、刪除表中資料

命令:delete from 表名 where 表示式

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

mysql> delete from myclass where id=1;

7、修改表中資料:

update 表名 set 字段=新值,… where 條件 

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

8、在表中增加字段:

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

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

mysql> alter table myclass add passtest int(4) default '0'

9、更改表名:

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

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

mysql> rename table myclass to youclass;

更新字段內容

update 表名 set 欄位名 = 新內容

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

文章前面加入4個空格

update article set content=concat(' ',content);

四、字段型別介紹

1.int[(m)] 型: 正常大小整數型別

2.double[(m,d)] [zerofill] 型: 正常大小(雙精密)浮點數字型別

3.date 日期型別:支援的範圍是1000-01-01到9999-12-31。mysql以yyyy-mm-dd格式來顯示date值,但是允許你使用字串或數字把值賦給date列

4.char(m) 型:定長字串型別,當儲存時,總是是用空格填滿右邊到指定的長度

5.blob text型別,最大長度為65535(2^16-1)個字元。

6.varchar型:變長字串型別

五、資料庫備份

1.匯出整個資料庫

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

2.匯出乙個表

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

3.匯出乙個資料庫結構

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

4.匯入資料庫

常用source 命令

進入mysql資料庫控制台,

如mysql -u root -p

mysql>use 資料庫

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

mysql>source d:wcnc_db.sql

**

mysql基礎知識

1 為什麼使用資料庫 1 降低儲存資料的冗餘度 2 更高的資料一致性 3 儲存的資料可以共享 4 可以建立資料庫所遵循的標準 5 便於維護資料完整性 6 能夠實現資料的安全性 2 在資料庫發展歷史上,出現了很多不同的資料模型,包括是層次模型 網狀模型 關係模型和物件模型 3 關係型資料庫的基本概念 ...

MySQL 基礎知識

1.如無備註,則表中的第乙個id欄位一定是主鍵且為自動增長 2.如無備註,則數值型別的字段請使用unsigned屬性 3.如無備註,排序欄位order id在程式中預設使用降序排列 4.如無備註,所有欄位都設定notnull,並設定預設值 5.如無備註,所有的布林值字段,如is hot is del...

Mysql基礎知識

text 用於大文字的儲存 char n 用於儲存小字串 varchar n 用於儲存小字串 decimal a,b 儲存數字型別 a表示長度,b表示小數的長度,eg 5位資料保留2位小數 decimal 5,2 int 儲存數字型別 bit 布林型別 datetime 日期主鍵 primary k...