91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何使用update語句多表關聯?

發布時間:2020-12-22 11:22:20 來源:億速云 閱讀:649 作者:小新 欄目:數據庫

小編給大家分享一下如何使用update語句多表關聯?,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

怎樣用update語句多表關聯?

update語句多表關聯的方法:

1) 最簡單的形式

SQL 代碼

--經確認customers表中所有customer_id小于1000均為'北京'

--1000以內的均是公司走向全國之前的本城市的老客戶:)
update customers
set city_name='北京'
where customer_id<1000

2) 兩表(多表)關聯update -- 僅在where字句中的連接

SQL 代碼

--這次提取的數據都是VIP,且包括新增的,所以順便更新客戶類別
update customers a -- 使用別名
set customer_type='01' --01 為vip,00為普通
where exists (select 1
from tmp_cust_city b
where b.customer_id=a.customer_id
)

3) 兩表(多表)關聯update -- 被修改值由另一個表運算而來

SQL 代碼

update customers a -- 使用別名
set city_name=(select b.city_name from tmp_cust_city b where b.customer_id=a.customer_id)
where exists (select 1
from tmp_cust_city b
where b.customer_id=a.customer_id
)
-- update 超過2個值
update customers a -- 使用別名
set (city_name,customer_type)=(select b.city_name,b.customer_type
from tmp_cust_city b
where b.customer_id=a.customer_id)
where exists (select 1
from tmp_cust_city b
where b.customer_id=a.customer_id
)一、隨機密碼生成。編寫程序在26個字母大小寫和9個數字組成的列表中隨機生成10個8位密碼。
    import random
    def random_password():
        list1 = []
        #把字母加入序列中
        for i in range(65,90):
            list1.append(chr(i))
        for i in range(97,122):
            list1.append(chr(i))
            
        list2 = [1,2,3,4,5,6,7,8,9]
        list = list1 +list2
        n = 0
        while n < 10:
            password = []
            n = n + 1
            m = 0
            password = password + random.sample(list, 8)
            #把列表轉化為字符串
            password_middle = [str(i) for i in password]
            password_end = ''.join(password_middle)
            
            print("第{}個隨機生成的密碼是:{}".format(n,password_end))
        
random_password()
#random.sample(seq, k)實現從序列或集合seq中隨機選取k個獨立的的元素
#random.randint(a, b)   #A-Z:65-90;a-z:97-122;ASCII碼48~57為0到9十個阿拉伯數字

看完了這篇文章,相信你對如何使用update語句多表關聯?有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

崇左市| 兰溪市| 酒泉市| 城市| 清河县| 镇江市| 遂昌县| 全州县| 靖安县| 于都县| 土默特左旗| 藁城市| 曲水县| 政和县| 麟游县| 禹城市| 平山县| 吴川市| 南乐县| 视频| 京山县| 中卫市| 梨树县| 望谟县| 承德县| 鹤山市| 共和县| 天峻县| 察隅县| 蓝田县| 斗六市| 香河县| 镇原县| 壤塘县| 石首市| 永修县| 临西县| 高台县| 金乡县| 桑植县| 忻州市|