I have a table with alot of rows looking something like this:
id-name-date---pcs
1 - x - 01-01 -10
2 - y - 01-01 -15
3 - z - 01-01 -8
4 - x - 02-01 -25
5 - y - 02-01 -10
6 - z - 02-01 -5
What I would like to do is a query that shows the development/difference of pcs for the names, between one month and antoher(in this case Feb and Jan), like this:
id-name-pcs
1 - x - (15)
2 - y - (-5)
3 - z - (-3)
Is it possible to do this with sql only or do I need to involve php?
Would it have an noticable impact on the server if I loop through all rows and did the calculation in php?
Thanks in advance!
Edit: The parentheses is not suppose to be a part of the query results. Only for this thread.