In my where clause I am trying to escape a special character "#" by following the manual's recommendation regarding backticks when creating a node:
WHERE line.`The #` IS NOT NULL AND line.`Person's First/Last Name` IS NOT NULL
However, when I do this, I get message:
No data returned, and nothing was changed.
Am I escaping the header values ("The #" and "Person's First/Last Name") properly?