I've been pulling my hair out. I have a very simple postgre database, one specific table has a column named lName (uppercase N). Now I know with postgre I must quote lName since it contains an uppercase N.
I am trying to query the database with the following statement:
SELECT *
FROM employee
WHERE "lName" LIKE "Smith"
But I am receive this error:
Warning: pg_query()
[function.pg-query]: Query failed:
ERROR: column "Smith" does not exist
in .....
What is the issue here? Why is it saying the column is "Smith"?
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…