I have a table person, and a table called cars
I would like to set up a query that joins the table ex.
"select p.firstname, p.lastname, c.carType from person p, cars c where p.id=c.pid"
the tables are obviously 1 to many
I would like the returned result to look like this
Bob, Jones, Porche, Buick, Ferrrari
Dan Smith Chevy, Toyota, Honda, Suzukit, GMC
How can this be done... Spent too much time, and I am no closer... Any help would be apprciated.
Thanks
FC
I would like to set up a query that joins the table ex.
"select p.firstname, p.lastname, c.carType from person p, cars c where p.id=c.pid"
the tables are obviously 1 to many
I would like the returned result to look like this
Bob, Jones, Porche, Buick, Ferrrari
Dan Smith Chevy, Toyota, Honda, Suzukit, GMC
How can this be done... Spent too much time, and I am no closer... Any help would be apprciated.
Thanks
FC