JOINs
Pinot supports JOINs, including left, right, full, semi, anti, lateral, and equi JOINs. Use JOINs to connect two table to generate a unified view, based on a related column between the tables.
JOINs overview
Supported JOINs types and examples
Inner join
SELECT myTable.column1,myTable.column2,myOtherTable.column1,....
FROM mytable INNER JOIN table2
ON table1.matching_column = myOtherTable.matching_column;Example of inner join
Left join
Right join
Full join
Cross join
Semi/Anti join
Equi join
JOINs optimizations
Was this helpful?

