View the original community article here
Last tested: Sep 2020
It doesn't matter. According to docs, you can write the join in any order. Thus these two are equivalent:
sql_on: ${order.user_id} = ${user.id} ;;
sql_on: ${user.id} = ${order.user_id} ;;
This content is subject to limited support.