I am using mysql and the following two sqls produce different result.
SELECT developers.* FROM "developers" ORDER BY id DESC LIMIT 1
SELECT developers.* FROM "developers" ORDER BY 'id DESC' LIMIT 1
I thought that quoting order by should not matter.