-- Relacionar los registros que aparecen en las dos tablas -- Si mi registro no tiene registros relacionados en la otra tabla -- NO APARECE select country,city from country inner join city using(country_id) where city like 'T%'; -- ¿Cómo puedo hacer que aparezcan? -- Cambiar el tipo de join: left, right select country,city from country left join city using(country_id) where country like 'A%'; select country,city from country right join city using(country_id) where city like 'T%'; select country,city from country left join city using(country_id) where city is null; select country,city from country right join city using(country_id) where country is null