Semantic SQL (SemQL)
The query language Wobby agents use to analyze your data
-- Instead of this (raw SQL):
SELECT o.organization_name, COUNT(DISTINCT u.user_id) AS user_count
FROM analytics_marts.dim_app_organizations o
JOIN analytics_marts.dim_app_users u ON o.organization_id = u.organization_id
WHERE o.current_member_count > 0
GROUP BY o.organization_name
-- You write this (SemQL):
SELECT name, user_count
FROM organizations[active_only]
GROUP BY nameWhy Wobby agents use SemQL
What's in this section
Last updated