Skip to content
Advertisement

is there a more efficient way of comparing two variables obtained from a db?

This works but is there a shorter(more efficient) way of doing this? code compares 2 numbers. One is from the most recent record, the other is from 7 records down.

JavaScript

Advertisement

Answer

You can combine both queries in to a single one avoiding round trips to DB server.

Assign ranks to each of the 7 rows after order by with the help of SQL variable. Now, sum() all values by filtering the rows which have rank either 1 or 7. If rank = 1, add it’s negative state.

As a side note, if $thiscoin is coming from user, you can better make parameterized queries to avoid SQL injection attacks using PDO.

Query:

JavaScript

Code:

This would simply be

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