我正在尝试使用查询创建以下 SQL 表:
create table Return_indiv (Date datetime, issueid varchar(255), Return varchar(255))
如您所见,其中一列名称是“Return”。但是,SQL 认为它是 function return
,并给出以下错误:
Msg 156, Level 15, State 1, Line 1
Incorrect syntax near the keyword 'Return'.
Msg 195, Level 15, State 10, Line 1
'varchar' is not a recognized built-in function name.
有什么办法可以克服这个错误?谢谢!