mysql - Why one of the columns of my SQL table cannot be extracted (a text column)? -
when trying extract 1 of columns(containing text) of table in mysql getting syntax error:
unexpected key_sym while not case other columns.
anyone has idea problem be?
i trying simple code:
select key, name data1.info
if replace column "key" other column names work not one.
the key column contains keys:
8997897986575625757576557576523686812638612836263816283618263861826361836
key
is reserved word have use backticks(`) around column names when use reserved words
select `key`,name data1.info
Comments
Post a Comment