我想在从表中执行 select into table_n 时获得返回计数行
当我运行时
select * into mobile_n from mobile where c_name='dic'
,我想获得 select count(1) from mobile_n
的结果
我尝试过
select count(1)
from (
select * into mobile_n from mobile where c_name='dic'
return *
)
,但没有成功
when I run
select * into mobile_n from mobile where c_name='dic'
I want to get the reuslt of select count(1) from mobile_n
I tried
select count(1)
from (
select * into mobile_n from mobile where c_name='dic'
return *
)
but it did not work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。 https://www.postgresql.org/docs/current/sql-selectinto。 html。
我强调/加粗。
解决方法:
You can't. https://www.postgresql.org/docs/current/sql-selectinto.html.
emphasis/bold by me.
work around:
您可以尝试使用
cte
<代码>计数结果You can try to use
CTE
forcount
result