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

前端之家收集整理的这篇文章主要介绍了sql – 选择名为“index”的列的表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个名为“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的文档.

原文链接:https://www.f2er.com/mssql/79938.html

猜你在找的MsSQL相关文章