Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将列名重命名为空白,因为我不希望列名显示在输出中:)。我不想要临时更改或 html/xml 格式。可能这是一个非常基本的问题,但到目前为止我无法找到一个好的答案。
添加一个空格作为别名。不允许使用定义为 "" 或 [] 的别名。
SELECT Column1 AS [ ]
应该很简单(注意引号之间的空格):
Select 'ColumnName' as ' ' From TableName