在 BigQuery 中,是否有类似于 @@ROWCOUNT 的东西可以在 BigQuery 存储过程中使用?

In BigQuery, is there anything similar to @@ROWCOUNT that can be used in a BigQuery stored procedure?

在SQL服务器中,如果想得到最后一条语句影响的行数,可以使用@@ROWCOUNT。在 Teradata 中,我们有 ACTIVITY_COUNT.

BigQuery 中的等效项是什么?

@@row_count最近才发布,试试:

create temp table t as select 1 x;
delete from t where true;

select @@row_count;