DarkWorlds
Technical User
Well I need to re-arrange my output in a way that works without doing 52 lef joins.
basicly the output is as follows.
store|week|profit
5|1|25000
5|2|15000
5|3|9850
Well I need the following
_____|week1 |week2 |
store|profit|profit|
How can I do this with a select and not do 52 left joins?
basicly the output is as follows.
store|week|profit
5|1|25000
5|2|15000
5|3|9850
Well I need the following
_____|week1 |week2 |
store|profit|profit|
How can I do this with a select and not do 52 left joins?