I want to calculate some trends based on the values I get in my SQL database. Particularly I am interested in getting the % increase of the values in one column (the value should be negative in case the values have decreased)
Can someone please advice how I should do this?
I cannot use stored procedures.
Thanks.
My table has the following columns
Date (numeric), Month (numeric), Orders (numeric), Price (real)
I want to calculate the % of change in the number of orders received from one month to next. I also want the direction to be a consideration i.e. the value returned should be -ve in case the sales have decreased.
