I have two tables with completely different structures. I want to query MYSQL to get all columns from both tables in a single query.
So for example, if I have a Person table and an Animal table, I want my query to return:
person_name|person_age|animal_type|animal_name
______________________________________________
Ryan |31 |NULL |NULL
Fred |23 |NULL |NULL
NULL |NULL |Cat |Whiskers
NULL |NULL |Dog |Wishbone
I only have basic knowledge of MYSQL and I couldn't understand most of the material I was reading and googling, and it didn't seem to match exactly what I want.
Thanks!