我有一张Daily_account
桌子:
customer_id account_id current_balance
1 D1 200
2 d2 300
3 d10 400
4 d100 500
5 d101 600
现在我有一个查询:
select customer_id,account_id,current_balance
from daily_account
where account_id between 'D1' and'D100'
它给了我 D1、D10、D100 账号的输出,但我想得到每个账号的输出。如何获得 D1 和 d100 之间的每个帐户的输出?