Recently, I encountered a database with the following data type: decimal(14,4) The problems encountered are: When I use Python to read data into memory, it always has decimal characters. When I write it into other MySQL tables, the data type is int, which causes data to fail to be stored. import pymysql # Create a database connection 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) Solution: Use mysql's cast method to convert select cast(created_time as signed) AS created_time from schma.table This is the end of this article about the implementation of MySQL decimal data type conversion. For more information about MySQL decimal data type conversion, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the flexible use of CSS grid system in projects
>>: Implementation of Docker deployment of Nuxt.js project
When we do CSS web page layout, we all know that i...
FastDFS & Nginx Integration: The tracker is c...
Table of contents origin status quo Cancel reques...
Before the release of Microsoft IE 5.0, the bigges...
To remove the underline of a hyperlink, you need t...
The solution to forgetting the initial password o...
<META http-equiv="Page-Enter" CONTENT...
frame: Style=”border-style:solid;border-width:5px;...
Table of contents 1. What is a directive? Some co...
Preface As a basic data structure, arrays and obj...
As shown below: XML/HTML CodeCopy content to clip...
This article describes how to install the PHP cur...
Table of contents Lifecycle Functions Common life...
Today, I encountered a small problem that after s...
Official documentation: So mysql should be starte...