最近在工作遇到數(shù)據(jù)庫中存的數(shù)據(jù)類型是: decimal(14,4)
遇到的問題是:
當我使用python 讀取到內存中時,總是帶著 decimal字符, 再寫入其它mysql表中時,數(shù)據(jù)類型為int型,導致數(shù)據(jù)入庫不成功.
import pymysql
# 創(chuàng)建數(shù)據(jù)庫連接
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方法來轉換
select
cast(created_time as signed) AS created_time
from schma.table
到此這篇關于mysql decimal數(shù)據(jù)類型轉換的實現(xiàn)的文章就介紹到這了,更多相關mysql decimal數(shù)據(jù)類型轉換內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- mysql 數(shù)據(jù)類型轉換的實現(xiàn)
- MySQL數(shù)據(jù)類型DECIMAL用法詳解
- mysql中decimal數(shù)據(jù)類型小數(shù)位填充問題詳解
- MySQL數(shù)據(jù)類型全解析
- 基于PostgreSQL和mysql數(shù)據(jù)類型對比兼容
- 詳解MySQL中的數(shù)據(jù)類型和schema優(yōu)化
- MyBatis JdbcType 與Oracle、MySql數(shù)據(jù)類型對應關系說明
- MySQL 數(shù)據(jù)類型選擇原則