【发布时间】:2017-06-12 17:43:13
【问题描述】:
我是 BigQuery 领域的新手。我有一些旧的 Teradata sql 顺序代码,看起来像 -
/*************/ create table tab1 as (select x,y,z from table tab2);
更新表tab1 set x = n where y= m;
create table tab3 as (select x,count(distinct z) from tab1); /*************/
如何在 BigQuery 中实现相同类型的代码部分?提前感谢您的帮助。
问候, S帕尔
【问题讨论】:
标签: google-bigquery