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

溫馨提示×

溫馨提示×

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

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

怎么用Python將一個DB的表結構同步給另一個DB

發布時間:2021-11-26 09:36:31 來源:億速云 閱讀:150 作者:iii 欄目:大數據

這篇文章主要介紹“怎么用Python將一個DB的表結構同步給另一個DB”,在日常操作中,相信很多人在怎么用Python將一個DB的表結構同步給另一個DB問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么用Python將一個DB的表結構同步給另一個DB”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

具體的實現代碼如下所示:
# coding:utf-8import pymysql
dbDict = {"test1":"l-beta.test1"}dbUser = "test"dbPassword = "123456"
class DBUtils():    def __init__(self):        self.conn = pymysql.connect(dbDict['test1'], dbUser, dbPassword)        self.cursor = self.conn.cursor()
   def dbSelect(self, sql):        print("------------------------------------")        print(sql)        resultList = []        self.cursor.execute(sql)        result = self.cursor.fetchall()        columns = self.cursor.description        for val in result:            tempDict = {}            for cloNum in range(len(columns)):                tempDict[str(columns[cloNum][0])] = val[cloNum]            resultList.append(tempDict)        print("---------------------打印查詢結果----------------------")        print(resultList)        self.dbClose()        return resultList
   def dbExcute(self, sql):        print(sql)        self.cursor.execute(sql)        self.dbClose()
   def dbClose(self):        self.conn.commit()        self.cursor.close()        self.conn.close()

if __name__ == "__main__":    test = DBUtils()    result = test.dbSelect("select table_name from information_schema.tables where table_schema='testdb1'")    for dict1 in result:        test = DBUtils()        create_table_sql = "create table testdb.%s as select * from testdb1.%s" % (dict1['table_name'],dict1['table_name'])        print(create_table_sql)        test.dbExcute(create_table_sql)        

到此,關于“怎么用Python將一個DB的表結構同步給另一個DB”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

玛多县| 门头沟区| 肇东市| 遂宁市| 福贡县| 莫力| 平邑县| 凌云县| 水富县| 上高县| 特克斯县| 行唐县| 隆尧县| 邵阳县| 廊坊市| 渑池县| 金平| 高安市| 徐闻县| 出国| 涿鹿县| 综艺| 突泉县| 富川| 铜鼓县| 宁海县| 明溪县| 五台县| 吉林省| 禄丰县| 永城市| 无棣县| 平山县| 六枝特区| 张掖市| 武清区| 盐边县| 原阳县| 饶阳县| 麻城市| 读书|