What is wrong with this SQL statement?

前端 未结 6 892
夕颜
夕颜 2021-01-23 00:06

I\'m trying to create this table and I want to gauge my eyes out. What is wrong with it? I get an error: \"Incorrect syntax near PLAN\"

create table Instrumentos         


        
6条回答
  •  孤街浪徒
    2021-01-23 01:02

    Plan is a reserved word. If you really want to use it, and I advise against it, you would need to enclose it in escape characters.

提交回复
热议问题