How to deal with SQL column names that look like SQL keywords?

后端 未结 14 1110
温柔的废话
温柔的废话 2020-11-22 13:24

One of my columns is called from. I can\'t change the name because I didn\'t make it. Am I allowed to do something like SELECT from FROM TableName

14条回答
  •  悲哀的现实
    2020-11-22 13:46

    These are the two ways to do it:

    1. Use back quote as here:

    SELECT `from` FROM TableName

    1. You can mention with table name as:

    SELECT TableName.from FROM TableName

提交回复
热议问题