postgresql – 为什么没有列的SELECT有效

postgresql – 为什么没有列的SELECT有效,第1张

概述我意外地写了一个像my_table中选择的查询;而且令人惊讶的是它是有效的声明.对我来说更有趣的是即使是SELECT;是PostgreSQL中的有效查询.您可以尝试用以下方法编写很多有趣的查询: select union all select;with t as (select) select;select from (select) a, (select) b;select where e 我意外地写了一个像my_table中选择的查询;而且令人惊讶的是它是有效的声明.对我来说更有趣的是即使是SELECT;是Postgresql中的有效查询.您可以尝试用以下方法编写很多有趣的查询:
select union all select;with t as (select) select;select from (select) a,(select) b;select where exists (select);create table a (b int); with t as (select) insert into a (select from t);

这是一些定义sql标准的结果,还是有一些用例,或者只是有趣的行为,没有人关心以编程方式限制?

Right from the manual:

The List of output Expressions after SELECT can be empty,producing a zero-column result table. This is not valID Syntax according to the sql standard. Postgresql allows it to be consistent with allowing zero-column tables. However,an empty List is not allowed when disTINCT is used.

如果我没有弄错的话,“零列”表的可能性是表继承的副作用.关于Postgres邮件列表的讨论(但我现在找不到)

总结

以上是内存溢出为你收集整理的postgresql – 为什么没有列的SELECT有效全部内容,希望文章能够帮你解决postgresql – 为什么没有列的SELECT有效所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1167097.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存