溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mysql基礎(chǔ)知識(shí)學(xué)習(xí)

發(fā)布時(shí)間:2020-07-12 10:31:02 來源:網(wǎng)絡(luò) 閱讀:394 作者:老鷹a 欄目:數(shù)據(jù)庫

 

1      說明

數(shù)據(jù)庫的命令時(shí)不區(qū)分大小寫的,例如“CREATE DATABASE test”與“create database test”是同樣有效的。

2      連接數(shù)據(jù)庫

1) 連接到本機(jī)上的MYSQL

連接數(shù)據(jù)庫可以用phpadmin管理平臺(tái),也可以用命令行方式,本次我使用的是wamp搭建的環(huán)境,wamp自帶有mysql數(shù)據(jù)庫和工具,通過命令行對mysql進(jìn)行操作。進(jìn)入mysql數(shù)據(jù)庫的命令:mysql -u root –p

mysql基礎(chǔ)知識(shí)學(xué)習(xí)

2) 連接到遠(yuǎn)程主機(jī)上的MYSQL

假設(shè)遠(yuǎn)程主機(jī)的IP為:1.1.1.1,用戶名為root,密碼為root。則鍵入以下命令:

    mysql –h 110.110.110.110-u root -p root

3      數(shù)據(jù)庫命令

1)創(chuàng)建數(shù)據(jù)庫test

Create database test

 

2)創(chuàng)建數(shù)據(jù)表persons

create tablepersons

(

firstnamevarchar(8),

lastnamevarchar(8),

age int

)

 

3)在數(shù)據(jù)表中插入一條新記錄

insert into persons(age,firstname,lastname) values (25,zhang,san)

 

4)查詢persons表中所有數(shù)據(jù)

select * from persons

 

5)條件查詢,從數(shù)據(jù)庫中查詢結(jié)果,查詢persons表中age字段為25的數(shù)據(jù)。

select * from personswhere age=25

 

6)order by排序,按age字段進(jìn)行升序排序,order by默認(rèn)是按升序排序,如果要按降序排列則在后門加上DESC。

select * from personsorder by age

 

7order by另類用法,如果order by后面接具體的數(shù)字,則表明按表格第幾列進(jìn)行排序,例如order by 1則表明按表格的第一列進(jìn)行排序,如果order by后面的數(shù)字大于表格的列數(shù),則會(huì)報(bào)錯(cuò),這種用法通常用于SQL注入中判斷數(shù)據(jù)庫表的字段數(shù)。

select * from personsorder by 1

 

8)修改表中數(shù)據(jù):修改persons表中firstname字段為xiaoage的值為100

update personsset age=100 where firstname='xiao'

 

9刪掉數(shù)據(jù)庫中的數(shù)據(jù):刪掉persons表中age100的數(shù)據(jù)

delete from persons where age=100

 

10)刪除數(shù)據(jù)表,刪除persons數(shù)據(jù)表

drop tablepersons

 

11)刪除數(shù)據(jù)庫,輸出test1數(shù)據(jù)庫

drop tabletest1

 

12)查看數(shù)據(jù)庫

show databases

 

13)查看數(shù)據(jù)表

Show tables



14)查看數(shù)據(jù)表中有哪些字段:查看users表中有哪些字段

show columns from users

mysql基礎(chǔ)知識(shí)學(xué)習(xí)


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI