[Solved] Join SQL tables, but with additional info from joined table


SELECT product_sales.*, state_names
FROM product_sales
INNER JOIN states_keys
ON product_sales.state_key = states_keys.state_key

solved Join SQL tables, but with additional info from joined table