Advertisement
kirzecy670

Untitled

Jun 9th, 2025
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.25 KB | None | 0 0
  1. SELECT uid,
  2.        ts,
  3.        action,
  4.        sessionNumber,
  5.        addJson,
  6.        JSONExtractInt(addJson, 'timestamp') AS timestamp,
  7.        appVersion
  8. FROM stat.funnelTrack
  9. WHERE dt >= '2025-06-01'
  10.   AND uid IN ('uw8bt35x40')
  11.   AND action NOT IN ('default_price_group',
  12.                      'app_theme_change',
  13.                      'install_referrer_init',
  14.                      'sensors',
  15.                      'unlucky',
  16.                      'notification_in_app_switcher',
  17.                      'notifications_sound',
  18.                      'firebase_info',
  19.                      'load_product_prices_start',
  20.                      'install_referrer_response',
  21.                      'REFERRER',
  22.                      'feature_disabled',
  23.                      'load_product_prices_end',
  24.                      'purchase_flow',
  25.                      'appsflyer_attribution',
  26.                      'fst_gmd_55626_quiz_basic',
  27.                      'app_was_rolled',
  28.                      'app_was_closed')
  29.     -- AND action in ('full_register', 'profile_open', 'main_screen_open', 'open_first')
  30.     AND action not like 'fst_gmd_%'
  31.     AND action not like 'growth_gmd_%'
  32.     AND action not like '%buy_screen%'
  33. ORDER BY uid,
  34.          ts DESC, timestamp DESC
  35. LIMIT 5000;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement