加入收藏 | 设为首页 | 会员中心 | 我要投稿 PHP编程网 - 黄冈站长网 (http://www.0713zz.com/)- 数据应用、建站、人体识别、智能机器人、语音技术!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

sql – 选择名为“index”的列的表

发布时间:2021-03-17 03:14:47 所属栏目:MsSql教程 来源:网络整理
导读:我有一个名为“index”的列名表 select id,indexfrom item; 给出错误: Msg 1018,Level 15,State 1,Line 1 Incorrect syntax near ‘index’. If this is intended as a part of a table hint,A WITH keyword and parenthesis are now required. See SQL S

我有一个名为“index”的列名表

select id,index
from item;

给出错误:

Msg 1018,Level 15,State 1,Line 1 Incorrect syntax near ‘index’. If
this is intended as a part of a table hint,A WITH keyword and
parenthesis are now required. See SQL Server Books Online for proper
syntax.

如何对名为index的列进行选择?我正在使用sqlserver 2008-R2

解决方法

使用方括号引用 reserved words:
select id,[index]
from item

另见Delimited Identifiers的文档.

(编辑:PHP编程网 - 黄冈站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读