Rounding operation of datetime field in MySQL

Rounding operation of datetime field in MySQL

Preface

If I hadn't fallen into the trap, I probably wouldn't have known that the time field would be rounded up.

1. Background

The maximum time of the day is obtained through Java code and then stored in the database. The database table field format datetime retains 0 bits.

now.with(LocalTime.MAX)

A small line of code to get the maximum date of today.

I checked the database and found that the next day's time was actually stored there.

It looks like it’s rounded off!

2. Simulation test

After execution, take a look at the log:

It uses 2021-09-28T23:59:59.999999999, but strangely the database stores 2021-09-29 00:00:00.

Try using SQL directly:

This... is indeed rounded off.

Try MariaDB instead!

docker pull mariadb

docker run -d --name mariadb -p 33306:33306 -e "MYSQL_ROOT_PASSWORD=root" mariadb

docker exec -it mariadb bash

MariaDB discards extra digits directly!

3. Conclusion

If the value passed into MySQL time exceeds the precision range, it will be rounded.

If the value passed into MariaDB time exceeds the precision range, it will be discarded directly.

I stepped on a small pit. Finally, hard code it!

now.with(LocalTime.parse("23:59:59"))

Summarize

This is the end of this article about rounding of datetime fields in MySQL. For more information about MySQL datetime rounding, 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:
  • SQL Practice Exercise: Online Mall Database User Information Data Operation
  • MySQL learning database operation DML detailed explanation for beginners
  • MySQL learning to create and operate databases and table DDL for beginners
  • Detailed explanation of the mysql database LIKE operator in python
  • SQL Practice Exercise: Online Mall Database Product Category Data Operation

<<:  JavaScript String Object Methods

>>:  HTML design pattern daily study notes

Recommend

A brief discussion on the issue of element dragging and sorting in table

Recently, when using element table, I often encou...

MySQL 5.7.21 installation and configuration tutorial

The simple installation configuration of mysql5.7...

Perform data statistics on different values ​​of the same field in SQL

Application scenario: It is necessary to count th...

Detailed explanation of Docker basic network configuration

External Access Randomly map ports Using the -P f...

How to solve the DOS window garbled problem in MySQL

The garbled code problem is as follows: The reaso...

js to implement verification code interference (static)

This article shares the specific code of js to im...

VMware virtual machine installation Apple Mac OS super detailed tutorial

Table of contents Summarize Sometimes we need to ...

Implementation of Docker packaging image and configuration modification

I have encountered many problems in learning Dock...

The implementation process of ECharts multi-chart linkage function

When there is a lot of data to be displayed, the ...

Basic usage tutorial of IPTABLES firewall in LINUX

Preface For production VPS with public IP, only t...

CSS3 clear float method example

1. Purpose Through this article, everyone can und...

Prometheus monitors MySQL using grafana display

Table of contents Prometheus monitors MySQL throu...

How to prevent computer slowdown when WIN10 has multiple databases installed

Enable the service when you need it, and disable ...