Skip to content
Advertisement

Set new field priority in SELECT SQL

I have a table of bills with the following structure:

What I need is to select all data from table and set additional field “Priority” based on a sum of bill. First 2 rows get priority 1, next 2 rows get priority 2, others get 0:

In addition table contains data about bills from various days (field payment_date) and this priority should be set based on data inside each single day.

Advertisement

Answer

Order the rows for each day and then assign priority based on the row number:

Which, for the sample data:

Outputs:

ID STORE_NAME SUM PAYMENT_DATE PRIORITY
2 Amazon 20 2022-05-11 00:00:00 1
3 Ebay 15 2022-05-11 00:00:00 1
4 Apple Store 13 2022-05-11 00:00:00 2
1 Amazon 10 2022-05-11 00:00:00 2
5 Google Play 6 2022-05-11 00:00:00 0

db<>fiddle here

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement