SELECT sum(liter),invoice_date
From wshell_transaction Where license_id= '"&request.form("key_choose")&"'
AND (remark<>'OOB' or remark IS NULL) Group by invoice_date
SELECT sum(liter),invoice_date
From wshell_transaction
Where license_id LIKE '"&request.form("key_choose")&"%'
AND (remark<>'OOB' or remark IS NULL) Group by invoice_date
SELECT sum(liter),invoice_date
From wshell_transaction
Where license_id like '"&request.form("key_choose")&" "&"%'
AND (remark<>'OOB' or remark IS NULL)
Group by invoice_date Order By invoice_date Desc