SELECT
b1.voucher_no,
b1.sl_name,
b2.sub_ledger_name,
b2.transaction_description,
b2.gl_name
FROM
a_bank_receipt_voucher b1 inner join a_bank_receipt_account_details b2 on b1.bank_receipt_id = b2.bank_receipt_id
WHERE
b1.voucher_no = ? AND b1.ac_date BETWEEN '2013-06-01' AND '2013-06-06 '
order by b1.voucher_no ASC limit 100
我的问题是如何在实际报告中打印日期参数(2013-06-01 和 2013-06-06)
(例如:我认为 2013-06-01 是从,2013-06-06 是迄今为止)