sql join all records from left table and only occurs columns from the right table code example
Example: how to select all the field of the left join table
SELECT nutrients.*, measures.colX
FROM nutrients
LEFT JOIN measures ON nutrients.name=measures.name