- Can I track product usage events without a data warehouse?
- Yes — provision an nlqdb database (anonymous mode mints one in seconds) and write each usage event as a row with the `@nlqdb/sdk` or a `POST /v1/run` parameterised insert (`GLOBAL-015`). There's no Snowflake/BigQuery to stand up and no ingestion pipeline to run. Then ask 'active users this week' in English. The honest limit: you emit the events; nlqdb stores and queries them, it doesn't autocapture.
- How do I query product analytics events in plain English instead of SQL?
- Ask the question — 'active users grouped by day this week' or 'top 10 features by event count'. nlqdb compiles it to SQL over your events table, runs it, and returns the ranked rows plus the compiled SQL under a `Show trace` toggle (`SK-WEB-005`) so you can audit the grain before trusting the number.
- Is this a replacement for Mixpanel, Amplitude, or PostHog?
- No — those autocapture events, render funnel/retention dashboards, and do session replay. nlqdb is the database-plus-English-query half: you choose what to log and get a SQL planner over it for ad-hoc 'how many / by feature' questions, without per-event billing or a warehouse. They compose — point your tracking client's sink at an nlqdb insert.
- How do I keep the events if I started in anonymous mode?
- Sign in within the 72-hour anonymous window and click 'Adopt this database' (`SK-ANON-002`). The database is re-keyed to your account, every event row persists, and there's no re-import. Anonymous databases that aren't adopted sweep at 72h, so adopt before real traffic piles up if you want to keep the history.