如果是不加任何条件*,只是查出2个表中的price字段的话,可以用:select a.praice,b.price from a,b; 如果是要查出同时符合2个表条件的数据的话,a,b两个表必须有一个字段含义相同,假设是item,可以用: select a.praice,b.price from a,b where a.item=b.item;
热心网友时间:2023-10-17 13:24
select a.priceItem as p1 ,b.priceItem p2 from a join b on a.xx = b.xx