If you have a space in your SQL Database column name, which you should avoid, you can use square brackets around the name:
xxxxxxxxxx
-- SELECT x FROM example table
-- This is the usual way to do it, but it will throw an error, instead do this:
SELECT x FROM [example table] WHERE