sql server 选择列
有什么区别
1).
SELECT
e.name 'name',
e.age 'age'
FROM
Employee e
2).
SELECT
e.name name,
e.age age
FROM
Employee e
What is the difference between
1).
SELECT
e.name 'name',
e.age 'age'
FROM
Employee e
2).
SELECT
e.name name,
e.age age
FROM
Employee e
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在第一个中,您将列别名限定为字符串,在第二个中,您不是。
从功能上来说,它们是相同的。
他们会产生与以下相同的结果:
In the first you are qualifying the column aliases as strings, in the second you are not.
Functionally, they are the same.
They would product the same result as:
例如,如果您喜欢使用带有空格、特殊字符或保留 SQL 字的列名,则需要进行限定。否则,引号是可选的。
e.g. if you like to use column names with space, special characters or reserved SQL words you need qualifying. Otherwise the quotes are optional.