Consider the below table “sample_table”
id name desc
-------------------------
1 kkt kkt description
1 skt skt description
is there anyway I can select the third column without using its name desc?
Trying select desc from mytable throws an error
Please suggest.
Thanks,
Balan
I fail to see why you need this and I would never use it myself.
Update
You should do like this instead.
Use
[]around column names that is reserved words.