I have a Daily_account table:
customer_id account_id current_balance
1 D1 200
2 d2 300
3 d10 400
4 d100 500
5 d101 600
Now I have a query:
select customer_id,account_id,current_balance
from daily_account
where account_id between 'D1' and'D100'
It is giving me output of account no of D1,D10,D100, but I want to get output of every no. How to get output of every account which comes between D1 and d100?

