आप इसे चुनिंदा..केस के साथ हासिल कर सकते हैं
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 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 एक्सप्रेशन के लिए दस्तावेज़ ।