I have a table and i want total row of bitwen
2 dates and like colu ‘e ‘and exclude col2 ‘ob_done’ and ‘rebook’
| date | col1 | col2 |
|---|---|---|
| 2-7-2022 | e162ez | job_done |
| 2-7-2022 | e16 2ex | job_done |
| 2-7-2022 | e16 2xx | null |
| 2-8-2022 | rm1 25z | rebok |
| 2-8-2022 | e17 2ex | rebok |
| 2-8-2022 | rm1 25z | null |
| 2-8-2022 | rm1 25z | rebok |
i try this query but its not working.please help me
SELECT *
FROM trans
WHERE collect_date BETWEEN '".$collect_date1."' AND '".$collect_date2."'
AND col1 LIKE '". 'e' ."%'
AND col2 NOT LIKE '". 'job_done' ."%'
AND cal2 NOT LIKE '". 'rebook' ."%'");