SQL insights enable you to directly access data in PostHog using SQL queries. They're powered by HogQL.
SQL commands
You create SQL queries out of a list of commands that shape what data, filters, aggregations, and ordering we want to see.
SQL queries in PostHog don’t require the trailing semi-colon (
;) of traditional SQL queries.
SELECT
Use SELECT to select data (usually columns, transformations, or aggregations) from one or more tables in the database.
Common values to select are * (representing all), event, timestamp, properties, and functions. These values can be found in the data management properties tab or inside tables in the database tab. 
Add the DISTINCT clause to SELECT commands to keep only unique rows in query results.
FROM
Use FROM to select the database table to run the queries on. In PostHog, examples include events, groups, raw_session_replay_events, and more listed in the data management database tab in PostHog.
You can join multiple tables together using the LEFT JOIN command which takes one table before the command and another after the command and combines them based on the join condition using the ON keyword.
WHERE
Use WHERE to filter rows based on specified conditions. These conditions can be:
- Comparison operators like =,<, or>=
- Logical operators like AND,OR, orNOT. These are often used to combine multiple conditions.
- Functions like toDate,today()
- Clauses like LIKE,IN,IS NULL,BETWEEN
GROUP BY
Use GROUP BY to group rows that have the same values in specified columns into summary rows.
ORDER BY
Use ORDER BY to sort the query results by one or more columns. You can specify order by ascending with ASC or descending with DESC.
AS
Use AS to alias columns or tables with different names. This makes the query and results more readable.
LIMIT
Use LIMIT to restrict the number of rows returned by the query. It specifies the maximum number of rows the query should retrieve. By default, PostHog sets it at 100.
HAVING
Use HAVING with the GROUP BY command to filter the results based on aggregate function values. While WHERE filters rows before grouping, HAVING filters grouped results after aggregation.
WITH
Use WITH to define a temporary result set that you can reference within a larger query. It helps break down complex queries into smaller parts. You can think of it as a function that returns a temporary table similar to using a subquery in a FROM command. The difference is that we query WITH subqueries each time they are used, potentially leading to slower queries.
Useful functions
HogQL includes many functions to aggregate and manipulate queried data. Below are some examples of some of the most popular SQL functions you can use in your insights.
Aggregate functions
These aggregate results for columns across all rows. They include:
- count(): Counts the number of rows that match a certain condition.
- avg(): Calculates the average numeric value of a column.
- sum(): Calculates the total (sum) numeric value of a column.
- max(),- min(): Finds the maximum or minimum value of a column.
You can find a full list of these in supported aggregations.
Regular functions
HogQL provides many functions for accessing, modifying, and calculating data from queries. Along with the one’s listed below, many basics include calculation operators (+, -, /, *), type conversions (toInt, toString), conditional statements (if, multiIf), and rounding (floor, round).
You can find a full list of these in supported ClickHouse functions.
JSON
You can access nested data in JSON and objects directly.
You can parse JSON with JSONExtractRaw() to return a value.
Specialized JSONExtract functions exist for different data types including:
- JSONExtractFloat
- JSONExtractArrayRaw
- JSONExtractString
- JSONExtractBool
Array
- arrayElement(arr, n): Retrieves the element with the index of n from the array- arr.
- arrayJoin(arr): Takes a row and generates multiple rows for the number of elements in the array. It copies all the column values, except the column where this function is applied. It replaces the applied column with the corresponding array value.
Date and time
- now(),- today(),- yesterday(): Returns the current time, date, or yesterday’s date respectively.
- interval: A length of time for use in arithmetic operations with other dates and times.
- toDayOfWeek,- toHour,- toMinute: Converts date number of day of week (1-7), hour in 24-hour time (0-23), and minute in hour (0-59).
- toStartOfYear,- toStartOfMonth,- toMonday,- toStartOfDay,- toStartOfMinute: rounds date down to the nearest year, month, Monday, day, hour, or minute respectively
- dateDiff('unit', startdate, enddate): Returns the count in- unitbetween- startdateand- enddate.
- formatDateTime: Formats a time according to a MySQL datetime format string.
Read more examples in How to do time-based breakdowns (hour, minute, real time) and Using HogQL for advanced time and date filters.
String
- extract: Extracts a fragment of a string using a regular expression.
- concat: Concatenates strings listed without separator.
- splitByChar,- splitByString,- splitByRegexp,- splitByWhitespace: splits a string into substring separated by a specified character, string, regular expression, or whitespace character respectively.
- match: Return whether the string matches a regular expression pattern.
- replaceOne,- replaceRegexpOne: Replace the first occurrence of matching a substring or regular expression pattern respectively with a replacement string.
- trim: Remove specified characters (or whitespace) from the start or end of a string.
Sparkline
A sparkline is a tiny graph contained in one cell of your query result. As an argument, it takes an array of integers.
You can use it to visualize queries, such as a 24-hour $pageview count for different $current_url values.
You can also use it for art.