亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何使用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

黄大仙区| 合阳县| 道真| 沛县| 微山县| 利津县| 通化县| 孙吴县| 曲周县| 红安县| 晋州市| 云梦县| 卓尼县| 绥化市| 拉孜县| 鸡东县| 县级市| 麻城市| 独山县| 伽师县| 忻州市| 崇义县| 肥城市| 梁山县| 广昌县| 江永县| 陆川县| 饶平县| 耒阳市| 阆中市| 福鼎市| 青冈县| 乌鲁木齐市| 揭西县| 浦东新区| 任丘市| 青海省| 淮阳县| 博客| 石阡县| 元朗区|