mysql update中使用subquery
生活随笔
收集整理的這篇文章主要介紹了
mysql update中使用subquery
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
首先,在mysql workbench內(nèi)執(zhí)行update時(shí),缺省是使用安全更新模式的,如果在update sql內(nèi)的where沒(méi)有指定id等主鍵條件,會(huì)告警并推出執(zhí)行。你可以關(guān)閉安全模式,執(zhí)行如下語(yǔ)句即可。
SET SQL_SAFE_UPDATES=0;這是mysql中的update 語(yǔ)句的樣式:
# Single-table syntax: UPDATE [LOW_PRIORITY] [IGNORE] table_referenceSET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ...[WHERE where_condition][ORDER BY ...][LIMIT row_count]# Multiple-table syntax: UPDATE [LOW_PRIORITY] [IGNORE] table_referencesSET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ...[WHERE where_condition]再說(shuō)一下update中的限制:
1. update 時(shí),更新的表不能在set和where中用于子查詢
2. update 時(shí),可以對(duì)多個(gè)表進(jìn)行更新 如:
update table_a a,table_b b set a.b_id=b.id, b.a_id=a.id;
3. update 后面可以做任意的查詢,這個(gè)作用等同于from
如下展示一個(gè)網(wǎng)友的例子:
mysql> create table IF NOT EXISTS tb (Name varchar(10),Time1 datetime,Time2 date time,Time3 varchar(8),Time4 varchar(8) ); Query OK, 0 rows affected (0.03 sec)插入一些數(shù)據(jù)后,進(jìn)行帶有子查詢的update操作:
// 這是mysql中update使用子查詢處理 mysql> update tb a,-> (select SEC_TO_TIME(sum(TIME_TO_SEC(time3))) col,max(time1) time,name-> from tb group by DATE_FORMAT(time1, '%Y-%m-%d'))b-> set time4=b.col-> where a.name=b.name and a.time1=b.time; Query OK, 4 rows affected (0.00 sec) Rows matched: 5 Changed: 4 Warnings: 0又比如:
// update tch, (SELECT (ta.base_pay-80.0) as pay,ta.tch_idFROM t_a taWHERE ta.STATUS = "INTERVIEW"AND ta.result = "PASS"AND ta.base_pay < 19AND ta.tch_id in(SELECT DISTINCTtb.tch_idFROMt_a tb JOIN tch t2 ON tb.tch_id = t2.idWHERE tb.STATUS = "INTERVIEW"AND tb.result = "PASS"AND tb.base_pay < 190AND t2.extra_class_salary IS NULL) ) tmps set tch.extra_class_salary = tmps.pay where tch.id = tmps.tch_id;總結(jié)
以上是生活随笔為你收集整理的mysql update中使用subquery的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 立减1000元!华为P50 Pro优惠力
- 下一篇: “出海”新突破,我国客运内燃动车组首次出