영카트5 '주문내역출력' 메뉴 엑셀 질문
본문
영카트5 '주문내역출력' 메뉴 엑셀의 한 셀에 $it_maker 를 삽입하고 싶은데
$sql = " SELECT a.od_id, od_b_zip1, od_b_zip2, od_b_addr1, od_b_addr2, od_b_addr3, od_b_addr_jibeon, od_b_name, od_b_tel, od_b_hp, b.it_name, ct_qty, b.it_id, a.od_id, od_memo, od_invoice, b.ct_option, b.ct_send_cost, b.it_sc_type
FROM {$g5['g5_shop_order_table']} a, {$g5['g5_shop_cart_table']} b
where a.od_id = b.od_id ";
이 부분에 'g5_shop_order_table' 과 'g5_shop_cart_table' 에 $it_maker 필드가 없어서 불러오질 못하네요
어떻게 하면 it_maker를 불러올 수 있을까요?
(구체적으로 알려주시면 감사합니다 ㅠㅠ)
답변 3
, b.it_sc_type 뒤에
, b.it_maker 를 추가해주시면 됩니다.
, b.it_sc_type 뒤에 (select it_maker from {$g5['g5_shop_item_table']} as c where b.it_id = c.it_id) as it_maker
해보세요
오홋 서브 쿼리를 적용
훌륭 합니다.
답변을 작성하시기 전에 로그인 해주세요.