中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

兴安县| 福贡县| 土默特左旗| 玛沁县| 邓州市| 房产| 临猗县| 繁昌县| 晋城| 文水县| 柞水县| 长沙县| 大连市| 拉孜县| 定南县| 三江| 镇江市| 台湾省| 蓝山县| 元江| 福清市| 盐源县| 达日县| 梅河口市| 长汀县| 剑川县| 新和县| 正定县| 奉化市| 宁国市| 麻江县| 长顺县| 贞丰县| 汝阳县| 饶河县| 甘孜| 光山县| 高邮市| 蒙城县| 柯坪县| 仙居县|