I am trying to execute this query that runs fine in mysql:
Code: Select all
SELECT states.*,
countries.name AS name_country
FROM states
JOIN countries ON states.country_id = countries.id
Anyone have any ideas on what I could try to get this working?