SQL query to get column of the next row to be of column of a row and the second row of the column to the next row

Naveen Chebrolu

I want to write a SQL query to get column of the next row to be of column of a row. the test example is as follows

enter image description here

I want to get SQL query to get result as follow:

enter image description here

Vamsi Prabhala

You can do this with LEAD provided the version you are on supports it.

select customer,orderdate,item,
lead(orderdate,1) over(partition by customer order by date) as second_date,
lead(item,1) over(partition by customer order by date) as second_item,
lead(orderdate,2) over(partition by customer order by date) as third_date,
lead(item,2) over(partition by customer order by date) as third_item
from tbl

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

sql query to get column of the next row to be of column of a row

From Dev

How to get next row column by javascript or jquery

From Dev

Subtract column with the next column in a different row

From Dev

sql query for grouping column into row

From Dev

Seperate row in column with SQL query

From Dev

Getting a Column on the next Row on excel with Macro

From Dev

find next row in DataFrame based on column values

From Dev

Create new column based on next row

From Dev

Why is Bootstrap moving the last column to the next row?

From Dev

Python - How to Compare a column value of one row with value in next row

From Dev

compare special column of each row with next row using bash

From Dev

adding a value to a column from data in next row sql

From Dev

VBA script to add formula to a column if next column has data in that row

From Dev

AWK replace null column with the column value of next row

From Dev

Merge rows based on column value and value different column in next row

From Dev

Get a value of a row in a column

From Dev

SQL Pivot row to column?

From Dev

print second column in transposed row

From Dev

SQL Query to Transpose Column Counts to Row Counts

From Dev

Multiple CSV Column to Row SQL Query

From Dev

How to pivot a column into a row for sql query

From Dev

SQL: Select a row from a table with an additional column containing the next value of the column

From Dev

sql query get multiple values from same column for one row

From Dev

SQL query to get computed values from the same column in one row

From Dev

Get same column in same row two times in SQL query

From Dev

Sql query to get 1 from each column row wise

From Dev

TSQL: How to Copy value from one column from the previous row into the next row in a different column

From Dev

How to use previous row's column's value for calculating the next row's column's value

From Dev

How to replace a column in a row with the next row having specific condition on that column in R?

Related Related

  1. 1

    sql query to get column of the next row to be of column of a row

  2. 2

    How to get next row column by javascript or jquery

  3. 3

    Subtract column with the next column in a different row

  4. 4

    sql query for grouping column into row

  5. 5

    Seperate row in column with SQL query

  6. 6

    Getting a Column on the next Row on excel with Macro

  7. 7

    find next row in DataFrame based on column values

  8. 8

    Create new column based on next row

  9. 9

    Why is Bootstrap moving the last column to the next row?

  10. 10

    Python - How to Compare a column value of one row with value in next row

  11. 11

    compare special column of each row with next row using bash

  12. 12

    adding a value to a column from data in next row sql

  13. 13

    VBA script to add formula to a column if next column has data in that row

  14. 14

    AWK replace null column with the column value of next row

  15. 15

    Merge rows based on column value and value different column in next row

  16. 16

    Get a value of a row in a column

  17. 17

    SQL Pivot row to column?

  18. 18

    print second column in transposed row

  19. 19

    SQL Query to Transpose Column Counts to Row Counts

  20. 20

    Multiple CSV Column to Row SQL Query

  21. 21

    How to pivot a column into a row for sql query

  22. 22

    SQL: Select a row from a table with an additional column containing the next value of the column

  23. 23

    sql query get multiple values from same column for one row

  24. 24

    SQL query to get computed values from the same column in one row

  25. 25

    Get same column in same row two times in SQL query

  26. 26

    Sql query to get 1 from each column row wise

  27. 27

    TSQL: How to Copy value from one column from the previous row into the next row in a different column

  28. 28

    How to use previous row's column's value for calculating the next row's column's value

  29. 29

    How to replace a column in a row with the next row having specific condition on that column in R?

HotTag

Archive