in the documentation for the sql_where parameter under join there is an example:
explore: orders_users_under_50 {
view_name: orders
join: users {
sql_on: ${users.id} = ${orders.user_id} ;;
sql_where: ${users.age} < 50 ;;
type: left_outer_each
}
}
type
is set to left_outer_each
, but there is no reference to that choice in the documentation for type
. What is left_outer_each?