开发者社区> 问答> 正文

如何调用参数化视图

如何调用参数化视图

展开
收起
Puppet 2020-03-19 22:47:24 2787 0
1 条回答
写回答
取消 提交回答
  • 调用上述定义中的pv1视图的示例如下。

    
    @a := select * from src where value >0;
    --call view with table variable an scalar
    @b := select * from pv1(@a,'20170101');
    @another_day := '20170102';
    --call view with table name and scalar variable
    @c := select * from pv1(src2, @another_day);
    @d := select * from @c union all select * from @b;
    with 
    t as(select * from src3)
    select * from @c 
    union all 
    select * from @d 
    union all 
    select * from pv1(t,@another_day);
    
    2020-03-19 22:47:50
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
建立联系方法之一 立即下载
低代码开发师(初级)实战教程 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载

相关实验场景

更多