溫馨提示×

溫馨提示×

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

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

簡單弄懂MySQL數(shù)據(jù)庫基礎(chǔ)知識

發(fā)布時間:2020-05-08 15:34:23 來源:三月 閱讀:187 作者:三月 欄目:MySQL數(shù)據(jù)庫

本文主要給大家簡單講講MySQL數(shù)據(jù)庫基礎(chǔ)知識,相關(guān)專業(yè)術(shù)語大家可以上網(wǎng)查查或者找一些相關(guān)書籍補充一下,這里就不涉獵了,我們就直奔主題吧,希望MySQL數(shù)據(jù)庫基礎(chǔ)知識這篇文章可以給大家?guī)硪恍嶋H幫助。

SQL語句實戰(zhàn)——DML語句(重點)

選擇:select * from table1 where 范圍

插入:insert into table1(filed1,filed2)values (filed1,filed2)

解釋:filed1,filed2 字段名;filed1,filed2字段值

刪除:delete from table1 where 范圍

更新:update table1 set field1=value1 where 范圍

查找:select * from table1where filed1 like ‘%value1%’ 

 解釋:查找包含value1的模糊匹配

如果查找以value1開頭,則用‘value1%’;

如果查找以value1結(jié)尾:則用‘%value1’;

排序:select * from table1 order by filed1,filed2[desc]

解釋:[desc]倒敘  [asc]正序

總數(shù):select count(*) as totalcount from table1

求和:select sum(field1) as sumvalue from table1

平均:select avg(field1) as avgvalue from table1

最大:select max(field1) as maxvalue from table1

最小:select min(field1) as minvalue from table1


實戰(zhàn)練習(xí):

1) 插入

對persion_info插入四條數(shù)據(jù):

語句:(person_id是自增長的,所以不用寫)

insert into person_info(name,country,salary)

values ( '小趙 ', 'China',1200.01),

('小錢 ', '上海 ',1600.32),

( '小孫 ', '廣州 ',2000.40),

( '小李 ', '珠海 ',1670.88);

執(zhí)行結(jié)果:

簡單弄懂MySQL數(shù)據(jù)庫基礎(chǔ)知識

2) 更新:

如果想把小趙的country字段換成北京,則執(zhí)行語句:

update person_info set country = '北京' where name = '小趙';

執(zhí)行后的結(jié)果如下:

簡單弄懂MySQL數(shù)據(jù)庫基礎(chǔ)知識


3) 排序

對name進(jìn)行order by排序

語句:select * from person_info order by name desc;

運行結(jié)果:


簡單弄懂MySQL數(shù)據(jù)庫基礎(chǔ)知識

4) 查找

查找包含“趙”的模糊匹配數(shù)據(jù),語句“”

Select * from person_info where name like ‘%趙%’;

運行結(jié)果:

簡單弄懂MySQL數(shù)據(jù)庫基礎(chǔ)知識

5) 總數(shù)

求person_info表里的數(shù)據(jù)總條數(shù)

語句:Select count(*) as totalcount from person_info;

執(zhí)行結(jié)果:

簡單弄懂MySQL數(shù)據(jù)庫基礎(chǔ)知識

可見結(jié)果是4,同時字段名為totalcount。

 

6) 求和

語句:select sum(salary) as sumvalue from person_info;

執(zhí)行結(jié)果:

簡單弄懂MySQL數(shù)據(jù)庫基礎(chǔ)知識

MySQL數(shù)據(jù)庫基礎(chǔ)知識就先給大家講到這里,對于其它相關(guān)問題大家想要了解的可以持續(xù)關(guān)注我們的行業(yè)資訊。我們的板塊內(nèi)容每天都會捕捉一些行業(yè)新聞及專業(yè)知識分享給大家的。

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

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

AI