I tried using UNION but I used to get this message:
Query input must contain at least one table or query
The query I tried was:
SELECT NULL AS ID, NULL AS Item
UNION
SELECT Items.ID AS ID, Items.Item as Item
FROM Items
INNER JOIN People
ON Items.PID=People.PID
WHERE People.Name='John';
Both select statements run OK independently.