| From: | Rich Shepard <rshepard(at)appl-ecosys(dot)com> |
|---|---|
| To: | pgsql-general(at)postgresql(dot)org |
| Subject: | Not seeing script error |
| Date: | 2026-01-08 16:43:23 |
| Message-ID: | 72d71614-3fa0-1a27-c271-a83ee759941a@appl-ecosys.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
The script:
select p.person_nbr, p.fname, p.lname, p.job_title, p.direct_phone, p.email,
c.company_nbr, c.company_name, c.industry
from people as p
inner join companies as c on p.company_nbr = c.company_nbr
where p.email is not null and
industry = 'Chemicals' or
industry = 'Energy' or
industry = 'Food processor' or
industry = 'Manufacturing' or
industry = 'Maritime' or
industry = 'Transportation' or
industry = 'Wood products'
group by p.person_nbr, c.company_nbr
order by p.person_nbr;
The where condition, `p.email is not null' is not working; the results
include rows where email is null while all other columns are okay.
I had that condition following the industry conditions but that makes no
difference.
What have I missed?
TIA,
Rich
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2026-01-08 16:48:47 | Re: Not seeing script error |
| Previous Message | Daniel Verite | 2026-01-08 16:12:06 | Re: Collation again here |