Hi @tumikosha ! You can specify the table name by hard-coding it like so:
join: customer {
sql: LEFT JOIN public.customer on ${order.id} = ${customer.id} ;;
}
Unfortunately, there is no way to reference the table name as defined in the LookML view while writing in the model file. This one of the reasons that sql is a deprecated parameter, and sql_on is recommended instead!