sql 新加坡聚焦名单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 新加坡聚焦名单相关的知识,希望对你有一定的参考价值。

WITH 
auditing_table AS (
  SELECT
  time,
  target_user_id,
  object_id,
  section_code,
  action_code,
  old_value,
  new_value
  FROM propertydb_staging.sg_auditing
  GROUP BY 1,2,3,4,5,6,7)

SELECT 
  time,
  target_user_id as agent_id,
  object_id as listing_id,
  section_code,
  action_code,
  SUM(CAST(old_value AS INT64) - CAST(new_value AS INT64)) as credits_used
  FROM auditing_table
  WHERE DATE(time) >= '2019-02-24'  
  AND section_code = 'AD_CREDIT'
  AND action_code = 'PREMIUM'
  GROUP BY 1,2,3,4,5
                                      
                                      
                                      
-----------
                                      

  
--   SELECT 
--   listing_id,
--   activation_date
--   FROM final_table
--   WHERE listing_id IN (29060586,29230808,29249987)
-- --   ORDER BY 2 DESC
-- ORDER BY 1,2
  

以上是关于sql 新加坡聚焦名单的主要内容,如果未能解决你的问题,请参考以下文章

sql 新加坡上市表现v2

sql 新加坡AIME表

sql 新加坡上市表现

sql 新加坡上市印象

新功能:阿里云负载均衡SLB支持HTTP/HTTPS超时时间自定义功能

(ACL+ICML)2020推荐系统相关论文聚焦(附下载链接)