I have this SQL statement:
select
v.venue_id, v.name
from
venues v
where
not exists (select e.vid
from events e
where e.vid = v.venue_id);
Here is the result of the query:
It works fine but the last row in the result is null, how do I remove that? Been trying for a bit now with no luck
>Solution :
I think this might be what you’re experiencing
Why does SQL workbench always return a row full of null values in every query?
Looks like that’s normal behavior
