Hi All,
I have an imported database with a field name as follows:
First name
So because it has a space between the words, I am having troubles writing a query for it. Does anybody know the syntax to do this? I tried the following with now luck:
Bring empty set even with a Joe in the table
SELECT * FROM table WHERE 'First name' = "Joe";
Same...
SELECT * FROM table WHERE "First name" = "Joe";
Gives error in syntax...
SELECT * FROM table WHERE First name = "Joe";
Any help would be appriciated.