I would like the query to select only if there is a column named firstName. If the column is firstname then the query should not return anything.
SELECT firstName as currentName from tableNew WHERE id = $Id
I tried the code below but does not work
SELECT binary firstName as currentName from tableNew WHERE id = $Id
Can you please help?