Implementation of mysql decimal data type conversion

Implementation of mysql decimal data type conversion

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:
  • A brief introduction to the usage of decimal type in MySQL
  • The difference between Decimal type and Float Double in MySQL (detailed explanation)
  • Detailed explanation of the meaning of N and M in the MySQL data type DECIMAL(N,M)
  • Method to convert scientific notation numeric string to decimal type
  • Database data type float to C# type decimal, float data type conversion is invalid
  • Detailed explanation of the usage of DECIMAL in MySQL data type
  • Detailed explanation of the decimal padding problem of decimal data type in MySQL
  • Detailed explanation of the usage of MySQL data type DECIMAL
  • In-depth explanation of the use and implementation of the Decimal type in the database

<<:  Detailed explanation of the flexible use of CSS grid system in projects

>>:  Implementation of Docker deployment of Nuxt.js project

Recommend

XHTML no longer uses some obsolete elements in HTML

When we do CSS web page layout, we all know that i...

FastDFS and Nginx integration to achieve code analysis

FastDFS & Nginx Integration: The tracker is c...

Axios cancel request and avoid duplicate requests

Table of contents origin status quo Cancel reques...

Overview of the definition of HTC components after IE5.0

Before the release of Microsoft IE 5.0, the bigges...

How to remove the underline of a hyperlink using three simple examples

To remove the underline of a hyperlink, you need t...

What to do if you forget the initial password of MySQL on MAC

The solution to forgetting the initial password o...

Various transformation effects of HTML web page switching

<META http-equiv="Page-Enter" CONTENT...

Some settings of Div about border and transparency

frame: Style=”border-style:solid;border-width:5px;...

Detailed explanation of Vue custom instructions and their use

Table of contents 1. What is a directive? Some co...

How many common loops do you know about array traversal in JS?

Preface As a basic data structure, arrays and obj...

About the problem of vertical centering of img and span in div

As shown below: XML/HTML CodeCopy content to clip...

Detailed explanation of how to install PHP curl extension under Linux

This article describes how to install the PHP cur...

Detailed explanation of Vue life cycle functions

Table of contents Lifecycle Functions Common life...

Docker implements container port binding local port

Today, I encountered a small problem that after s...

Solve the problem of mysql data loss when docker restarts redis

Official documentation: So mysql should be starte...