2 테이블 (고객, 거래)이 있습니다.각 제품을 구입할 때 위치 번호를 찾으십니까?
customer
id name location
1 samuel AZ
2 mithun CA
3 Robert NY
etc..
transaction
id customer_id product_id
1 1 12000
2 1 12222
3 3 15000
etc.
다른 제품과 내가 하나의 특정 제품을 구입 한 장소의 번호를 찾을 필요가 이러한 열으로
다른 위치에있다?
조인을 사용해 보았습니다.
내 코드는
select c.id, c.location, t.product_id
from customer c join transaction t
on (c.id = t.cid);
내가 두 테이블을 조인 할 수 있었다했지만, 난 TID에 의해 트랜잭션의 수를 계산해야합니다.