I have a database table that holds order information and saves the current gold price (world price) automatically at the time of entry
if i look back on the table, and the saved gold price has a difference of the current gold price of + 100 i want to show that in a report.
how would I write the mysql query to do this? I know how to do datedifs but not numeric values
example: select * from table where saved_price < current_price - 100
is there a better way to do this ?
thanks