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 whendisTINCT
is used.
如果我没有弄错的话,“零列”表的可能性是表继承的副作用.关于Postgres邮件列表的讨论(但我现在找不到)
总结以上是内存溢出为你收集整理的postgresql – 为什么没有列的SELECT有效全部内容,希望文章能够帮你解决postgresql – 为什么没有列的SELECT有效所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)