Можете да постигнете това с 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
Вижте документация за CASE изрази .
Можете да постигнете това с 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
Вижте документация за CASE изрази .