I have 2 Select Queries
select Amount,
CurrentBalanceCurrency,
AmountType
from UserBalance
where AmountType= 10
select Amount,
CurrentBalanceCurrency,
AmountType
from UserBalance
where AmountType= 20
I want to make this query in one line, without hitting my database twice.