Quote:
|
Originally Posted by shammat
Does MySQL really allow to quote reserved words with single quotes?
|
of course not!!
healdem was working without his glasses again, and simply mistook the backticks as quote marks
instead of this, which is wrong --
SELECT id, 'in', 'out' FROM hl_listing
you need to write it like this --
SELECT id, `in`, `out` FROM hl_listing