Du kan uppnå detta med ett select..case
select case when a.rate > b.rate then 'issue' else 'no issue' end
from yourTable a
join yourTable b using(id)
where a.date > b.date
Se dokumentation för CASE-uttryck .
Du kan uppnå detta med ett select..case
select case when a.rate > b.rate then 'issue' else 'no issue' end
from yourTable a
join yourTable b using(id)
where a.date > b.date
Se dokumentation för CASE-uttryck .