SQL method for calculating timestamp difference

SQL method for calculating timestamp difference

SQL method for calculating timestamp difference

Overview

Sometimes we need to find certain records by time, for example: calculate the records one hour before the sales time.
Usually we can use MYSQL's timestampdiff function to do this, but this cannot use the index, and if the amount of data is large, it will cause slow queries.

Use code to calculate the time and then pass it to SQL

We can use JAVA code to calculate the time first, and then pass it to the SQL statement to avoid using MYSQL functions.

public long xxxx(long sellTimeFrom){
    Calendar calendar = Calendar.getInstance();
    calendar.setTime(new Date(sellTimeFrom));
    calendar.set(Calendar.HOUR_OF_DAY,calendar.get(Calendar.HOUR_OF_DAY) - 1);
    return calendar.getTime().getTime();
}

This will calculate the time one hour before the sale time. Then pass it into the SQL statement where you write the code snippet. In this way, if the sales time field has an index, the index can be used.

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • MySQL slow query pitfalls
  • Solving the abnormality of mysql datetime query
  • Why MySQL can ignore time zone issues when using timestamp?
  • Pitfalls and solutions encountered in MySQL timestamp comparison query

<<:  Problems and solutions of using TweenMax animation library in angular

>>:  js implements a simple method of encapsulating jQuery and a detailed explanation of chain operations

Recommend

JavaScript Shorthand Tips

Table of contents 1. Merge arrays 2. Merge arrays...

Key points for writing content of HTML web page META tags

The META tag is an auxiliary tag in the head area...

Detailed explanation of jQuery method attributes

Table of contents 1. Introduction to jQuery 2. jQ...

Canvas draws scratch card effect

This article shares the specific code for drawing...

Detailed example of sorting function field() in MySQL

Preface In our daily development process, sorting...

CSS3 mouse hover transition zoom effect

The following is a picture mouse hover zoom effec...

MySQL Community Server 5.7.19 Installation Guide (Detailed)

MySQL official website zip file download link htt...

Several ways to submit HTML forms_PowerNode Java Academy

Method 1: Submit via the submit button <!DOCTY...

Repair solution for inconsistent MySQL GTID master and slave

Table of contents Solution 1: Rebuild Replicas Pr...

Apply provide and inject to refresh Vue page method

Table of contents Method 1: Call the function dir...

Vue3+el-table realizes row and column conversion

Table of contents Row-Column Conversion Analyze t...

Some ways to eliminate duplicate rows in MySQL

SQL statement /* Some methods of eliminating dupl...

Vue+echarts realizes stacked bar chart

This article shares the specific code of Vue+echa...