小編給大家分享一下mysql decimal數(shù)據(jù)類型轉(zhuǎn)換的實(shí)現(xiàn)示例,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
成都創(chuàng)新互聯(lián)是一家專注于網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)與策劃設(shè)計(jì),潼關(guān)網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)10余年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:潼關(guān)等地區(qū)。潼關(guān)做網(wǎng)站價(jià)格咨詢:028-86922220最近在工作遇到數(shù)據(jù)庫(kù)中存的數(shù)據(jù)類型是: decimal(14,4)
當(dāng)我使用python 讀取到內(nèi)存中時(shí),總是帶著 decimal字符, 再寫入其它mysql表中時(shí),數(shù)據(jù)類型為int型,導(dǎo)致數(shù)據(jù)入庫(kù)不成功.
import pymysql # 創(chuàng)建數(shù)據(jù)庫(kù)連接 con = pymysql.connect() sql = '''select created_time from schma.table LIMIT 10''' try: cur = con.cursor(cursor=pymysql.cursors.DictCursor) cur.execute(sql) except Exception as e: print(e) else: data = cur.fetchall() finally: cur.close() con.close() for d in data: created_time = d.get('created_time') print(created_time)
使用mysql的cast方法來轉(zhuǎn)換
select cast(created_time as signed) AS created_time from schma.table
看完了這篇文章,相信你對(duì)“mysql decimal數(shù)據(jù)類型轉(zhuǎn)換的實(shí)現(xiàn)示例”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
新聞名稱:mysqldecimal數(shù)據(jù)類型轉(zhuǎn)換的實(shí)現(xiàn)示例-創(chuàng)新互聯(lián)
URL地址:http://jinyejixie.com/article22/jgecc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供手機(jī)網(wǎng)站建設(shè)、網(wǎng)站內(nèi)鏈、域名注冊(cè)、虛擬主機(jī)、移動(dòng)網(wǎng)站建設(shè)、自適應(yīng)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容