Yeah, it's a weird one. Here's the full query (naming the columns instead of using *):
select j.job_id,
j.emp_id,
j.job_title,
j.education_levels,
j.addtl_acad_req,
j.hours,
j.job_type,
j.wage,
j.location,
j.start_date,
j.vacancies,
j.app_deadline,
--j.job_desc,
--j.inclusions,
j.other_inclusions,
--j.delivery_method,
--j.contact_person,
j.status,
j.submission_date,
--j.timestamp,
j.coop,
e.name
from jb_jobs j,jb_employers e
where j.emp_id = e.emp_id;
If I uncomment either of the columns which I've commented out the query returns the error I mentioned.
I had little to no response from posting it to a few postgresql forums, so I figured I'd try here.