주문내역 출력에 it_maker 넣는 방법
본문
주문내역 출력시 it_name 옆에 it_maker를 넣고 싶은데요
FROM {$g5['g5_shop_order_table']} a, {$g5['g5_shop_cart_table']} b 여기에
{$g5['g5_shop_item_table']} c 를 넣고 c.it_maker를 추가하고 $row['it_name'].$row['it_maker']로 하면
전체 상품이 나와버리는 오류가 나고 제가 그 뒤로 수정을 못하겠어서
$g5['g5_shop_order_table']} a 이나 {$g5['g5_shop_cart_table']} b 에 아예 it_maker를 넣고 a나 b.it_maker를 하고 싶은데요
어떻게 해야 하나요? ㅠㅠ
답변 1
(select it_maker from {$g5['g5_shop_item_table']} as c c.it_id = b.it_id) as it_maker
select에 추가해주시면 됩니다.
더 좋은 방법이 있을수도 있는데 제 생각을 적어드립니다.
답변을 작성하시기 전에 로그인 해주세요.