我想在从表中执行 select into table_n 时获得返回计数行

发布于 2025-01-18 12:19:37 字数 298 浏览 0 评论 0原文

当我运行时

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无法言说的痛 2025-01-25 12:19:37

你不能。 https://www.postgresql.org/docs/current/sql-selectinto。 html

SELECT INTO 创建一个新表并用由
询问。 与正常情况一样,数据不会返回给客户端
选择。新表的列具有名称和数据类型
与 SELECT 的输出列关联。

我强调/加粗。

解决方法:

create table mobile_n as select  * from mobile limit  0;
with a as(
insert into  mobile_n select  * from mobile where c_name = 'dic' returning 1)
select count(*) from a;

You can't. https://www.postgresql.org/docs/current/sql-selectinto.html.

SELECT INTO creates a new table and fills it with data computed by a
query. The data is not returned to the client, as it is with a normal
SELECT. The new table's columns have the names and data types
associated with the output columns of the SELECT.

emphasis/bold by me.

work around:

create table mobile_n as select  * from mobile limit  0;
with a as(
insert into  mobile_n select  * from mobile where c_name = 'dic' returning 1)
select count(*) from a;
止于盛夏 2025-01-25 12:19:37

您可以尝试使用cte <代码>计数结果

WITH result AS (
    select * 
    into mobile_n 
    from mobile 
    where c_name='dic' 
    RETURNING 1
)
SELECT count(*) 
FROM result;

You can try to use CTE for count result

WITH result AS (
    select * 
    into mobile_n 
    from mobile 
    where c_name='dic' 
    RETURNING 1
)
SELECT count(*) 
FROM result;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文