Left Join
Each item in the left table will show up in a MySQL result, even if there isn’t a match with the other table that it is being joined to.
select * from t_customers
left join t_customers_config
ON t_customers.user_id = t_customers_config.user_id