摘要: 1.新版本 1)intersect求多个数据集在某一维度上的交集,适合在用户分群等类似业务场景使用 select count( 1) from ( select id as create_user from app.user_model where 1=1 and product_count>=10 阅读全文
posted @ 2022-02-28 14:36 渐逝的星光 阅读(2530) 评论(0) 推荐(0) 编辑
摘要: 一、用户通过SQL创建函数 从 lambda 表达式创建用户定义的函数。表达式必须由函数参数、常量、运算符或其他函数调用组成。 句法: CREATE FUNCTION name AS (parameter0, ...) -> expression --删除函数 DROP FUNCTION [IF E 阅读全文
posted @ 2022-02-28 14:21 渐逝的星光 阅读(4063) 评论(0) 推荐(0) 编辑
摘要: -- 1.bitmapBuild(array) --从无符号整型(UInt8、UInt32、UInt64等)array构造bitmap SELECT bitmapBuild([1, 2, 3, 4, 5]) AS res, toTypeName(res) --2.bitmapToArray(bitm 阅读全文
posted @ 2022-02-28 11:12 渐逝的星光 阅读(1263) 评论(0) 推荐(0) 编辑