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

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Use Abs if the sign of the difference doesn't matter:

select * from table where abs(saved_price - current_price) > 100

If the sign is interesting, your suggested approach is fine. I'd write it like this, but use the way you think is the most read- and understandable:

select * from table where (current_price - saved_price) >= 100
link|improve this answer
need to be a + thanks – Jeff May 11 '11 at 18:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.