sql sub합계 질문 입니다.
본문
현재 1개의 컬럼의 합계를 사용하고 있는데요
2-3개의 컬럼의 합계를 더 사용하려고 하는데 어떻게 해야 하나요?
3개의 컬럼을 더하는게 아니고 각각의 컬럼의 합계 입니다.
$sql = " select *,sum(it_qty) as itqty ... 생략
2가지 컬럼을 더 사용할려고 합니다.
$sql = " select *,sum(it_qty) as itqty and sum(it_price) as itprice and sum(it_before_price) as itbeforeprice ... 생략
이런 맥락일거 같은데..
답변 2
select *,
sum(it_qty) as itqty,
sum(it_price) as itprice,
sum(it_before_price) as itbeforeprice from ...
감사합니다~^^
답변을 작성하시기 전에 로그인 해주세요.