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. 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:
|
<<: Problems and solutions of using TweenMax animation library in angular
Table of contents 1. Merge arrays 2. Merge arrays...
The META tag is an auxiliary tag in the head area...
Note: Since .NET FrameWork cannot be run in core ...
Table of contents 1. Introduction to jQuery 2. jQ...
This article shares the specific code for drawing...
Preface In our daily development process, sorting...
The following is a picture mouse hover zoom effec...
MySQL official website zip file download link htt...
Method 1: Submit via the submit button <!DOCTY...
Table of contents Solution 1: Rebuild Replicas Pr...
Table of contents Method 1: Call the function dir...
In actual Web development, inserting images, incl...
Table of contents Row-Column Conversion Analyze t...
SQL statement /* Some methods of eliminating dupl...
This article shares the specific code of Vue+echa...