Code:
SELECT i.path
FROM images As i
LEFT
OUTER
JOIN project_images As p
ON p.imageid = i.id
WHERE p.imageid IS NULL
The above should make things clearer. I have (unfortunately) got into the habit of omitting the "As" keyword, because it is not essential to the syntax.
Anyhow, the term you are looking for is "Aliasing".
You can alias tables, column names, literal strings etc!
Code:
SELECT e.FName + ' ' + e.SName As [FullName]
FROM employees As [e]
SELECT 'test' As [LiteralStringAlias]
JOINs are hard to get your head round at first, but (as you can see) are far more important that you might think!
Here are some lovely links you should take a look at to learn a bit more about JOINs:
http://www.w3schools.com/sql/sql_join.asp
http://sqlzoo.net/3b.htm
If you have any questions that crop up from either link then feel free to post them back here!