1. 程式人生 > >Mysql 入門,增刪改查(進階篇)

Mysql 入門,增刪改查(進階篇)

bsp com pre sco height name 數據 mysql from

主要已以下兩個表students與students_score,進行數據的增刪改查操作!

技術分享 技術分享

1、SELECT

1)select id,tel from students where id in(2,6) and tel not in(18392868125);   #從students表中,取出id在2和6之間的,並且tel不為‘18392868125’的數
2)select id,tel from students where tel = ‘18392868125‘ limit 1; #拉出一條tel為18392868125的數據
3)select distinct
tel from students; #拉出tel列去重數據

運行結果示例圖如下:

   技術分享 技術分享 技術分享

2、UPDATE

update students set name=(select name from students_score where id = 4 ) where id = 3;   #已students_score的id=4的name值,賦值給students的id=3的name值

Mysql 入門,增刪改查(進階篇)