|
| Total Answers and Comments: 3 |
Last Update: November 05, 2009 Asked by: amjadkj25 |
|
| | |
|
Submitted by: EZESPMAN create table car_temp select * from cars where Model = "Honda";
select distinctrow a.custid, a.custname, b.Model, c.Model from Customer a, cars b, car_temp c where a.custid = b.custid AND a.custid = c.custid;
Above answer was rated as good by the following members: h.karamshil | Go To Top
|