How to get datetime data in mysql, followed by .0

How to get datetime data in mysql, followed by .0

The data type of MySQL is datetime. The data stored in the database is 2015-01-19 05:02:02. When it is transferred to Java, it becomes 2015-01-19 05:02:02.0, with an extra .0 at the end.

The display format can be formatted by the following centralized method:

1. The type of regtime must be date type to be used in this way, which can be achieved through jstl

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<fmt:formatDate value="${userDb.regtime}" pattern="yyyy-MM-dd HH:mm:ss"/>

2. The type of regtime is String, which is implemented by js

<div><script>document.write("${userDb.regtime}".substring(0, 19));</script></div>

3. The type of regtime is String, which is implemented by jstl

<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<div>${fn:substring(userDb.regtime, 0, 19)}</div>

Display results: 2015-01-19 05:02:02

The above article about how to obtain datetime type data in MySQL, followed by a .0 implementation method, is all I have to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Summary of MySQL date data type and time type usage
  • Datetime and Timestamp comparison in Mysql
  • Solving the abnormality of mysql datetime query

<<:  JS implements Baidu search box

>>:  How to change the CentOS server time to Beijing time

Recommend

Detailed explanation on how to get the IP address of a docker container

1. After entering the container cat /etc/hosts It...

JavaScript explains the encapsulation and use of slow-motion animation

Implementing process analysis (1) How to call rep...

MySQL example of getting today and yesterday's 0:00 timestamp

As shown below: Yesterday: UNIX_TIMESTAMP(CAST(SY...

Disable input text box input implementation properties

Today I want to summarize several very useful HTML...

HTML weight loss Streamline HTML tags to create web pages

HTML 4 HTML (not XHTML), MIME type is text/html, ...

Specific use of routing guards in Vue

Table of contents 1. Global Guard 1.1 Global fron...

What you need to know about responsive design

Responsive design is to perform corresponding ope...

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

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

Nginx sample code for implementing dynamic and static separation

In combination with the scenario in this article,...

VMware 15.5 version installation Windows_Server_2008_R2 system tutorial diagram

1. Create a new virtual machine from VMware 15.5 ...

Detailed Explanation of JavaScript Framework Design Patterns

Table of contents mvc mvp mvvm The source of Vue ...

HTML+Sass implements HambergurMenu (hamburger menu)

A few days ago, I watched a video of a foreign gu...

5 ways to quickly remove the blank space of Inline-Block in HTML

The inline-block property value becomes very usef...