SQL implements addition, subtraction, multiplication and division operations on two adjacent rows of data

SQL implements addition, subtraction, multiplication and division operations on two adjacent rows of data

SQL implements addition, subtraction, multiplication and division operations on two adjacent rows of data after sorting the data in a certain order and grouping them by certain fields.

Ideas:

1: First group and sort the table data and then label them with serial numbers

2: Add/subtract one to the tag field as needed

Above code:

select distinct a.phone,from_unixtime(cast(floor(a.ts/1000) as bigint),'yyyyMMdd HH:mm:ss'),cha
from table a
join 
(
 select a.phone,a.ts,abs(a.ts-b.ts)/1000 cha
 from (select phone,ts,row_number() over (partition by phone order by ts ) rank from table) a
 left join
 ( select phone,ts,rank-1 as rank from (select phone,ts,row_number() over(partition by phone order by ts ) rank from table) a ) b
 on a.phone = b.phone and a.rank = b.rank
) b
on a.phone = b.phone and a.ts = b.ts
where a.phone is not null and a.phone<>'';

The table data is as follows:

The first column is phone, the second column is time ts, and you are required to calculate the time it takes for each two adjacent data of the same phone

The result is as shown below:

The third column is in seconds.

Supplementary knowledge: SQL implements the current row equal to the sum of the previous two rows of data

SQL implements a function similar to the Fibonacci sequence, that is, the current data is equal to the sum of the previous two data. See the example in this article for details.

Original table:

SQL statement (be familiar with the usage of JION ON here)

result

The above SQL to implement addition, subtraction, multiplication and division operations of two adjacent rows of data is all the content that the editor shares with you. I hope it can give you a reference, and I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL data table partitioning strategy and advantages and disadvantages analysis
  • Mysql method to calculate the difference between two adjacent rows of a column
  • How to get adjacent data in MySql

<<:  Detailed explanation of the latest IDEA process of quickly deploying and running Docker images

>>:  Vue3 manual encapsulation pop-up box component message method

Recommend

Linux concurrent execution is simple, just do it this way

Concurrency Functions time for i in `grep server ...

How to choose the format when using binlog in MySQL

Table of contents 1. Three modes of binlog 1.Stat...

Solve the problem of inconsistency between mysql time and system time in docker

Recently, when I installed MySQL in Docker, I fou...

The principle and implementation of two-way binding in Vue2.x

Table of contents 1. Implementation process 2. Di...

Press Enter to automatically submit the form. Unexpected discovery

Copy code The code is as follows: <!DOCTYPE ht...

Issues with using Azure Container Registry to store images

Azure Container Registry is a managed, dedicated ...

How to use docker to build redis master-slave

1. Build a Docker environment 1. Create a Dockerf...

What are your principles for designing indexes? How to avoid index failure?

Table of contents Primary key index Create indexe...

10 HTML table-related tags

In fact many people will say “I’ve seen that table...

React realizes secondary linkage effect (staircase effect)

This article shares the specific code of React to...

How to detect if the current browser is a headless browser with JavaScript

Table of contents What is a headless browser? Why...

Getting Started with MySQL - Concepts

1. What is it? MySQL is the most popular relation...

The implementation principle of Mysql master-slave synchronization

1. What is MySQL master-slave synchronization? Wh...

Teach you how to insert 1 million records into MySQL in 6 seconds

1. Idea It only took 6 seconds to insert 1,000,00...

Implement full screen and monitor exit full screen in Vue

Table of contents Preface: Implementation steps: ...