I am getting the issue I want to select two different queries in one query but different column Note: Not like union because union put these two queries in one column
select count(id) as lead,SUM(ol.publisher_earned) as earning from offer_process as ol
where ol.status='Approved' and ol.publisher_id='1738' and ol.created_at>='2021-08-01' GROUP by date(ol.created_at)
select count(ol2.id) as clicks from offer_process as ol2 where ol2.publisher_id='1738' and ol2.created_at>='2021-08-01' GROUP by date(ol2.created_at)