Hi all, more SQL help needed please

I need to merge this:
select * from TABLE1 where c_code = $this->c_code
Note; * pulls c_id, c_code, c_amount, c_type, c_status, c_use, c_expiry_date
and this SQL:
select count(c_id) as c_used from TABLE2 where c_id = x
Where x is the c_id from table1.
Hope this makes sense? Thank You in advance.