Is there away to join 3 tables by two attribute names and still display that entire row?
We have 3 tables, sports(event type, team 1, team 2, place, time, date, price) concert(artist, time, date, place, opening act and price) and restaurants(place, name, special and date)
I want to join them with sports.date, concert.date, sports.place, concert.place and restaurant.place
But i want it to show the rest of the attributes in the rest of the rows for each table.
table.columnsyntax in your SQL query. Initially, you might just want to useSELECT * ...to see everything.