Automatic Joins in Custom SQL

👤 This documentation is intended for SQL Users.

To automatically inner join tables together, put them inside brackets separated by a '+', e.g.:

select * from [gameplays+users];
select * from [gameplays+users+purchases];

Users can also use '<' to employ a left join like so:

select * from [gameplays<users];

Sisense for Cloud Data Teams will choose join routes based on the tables' primary keys, foreign keys, and common naming conventions. 

For example, let's join gameplays to users in order to split gameplays by users.platform:

Click the "Query" button above the chart to see the join routes Sisense selected: