아래와 같이 쿼리를 했는데요
인서트 하는것이 table02의 10번 아이템에 대해서
인서트하거든요...근데 table02의 10번 아이템에 대해서 카운트하면
서로 갯수가 틀리네요..
어떻게 된 일인지...
머가 틀렸을까요.. 저 머리론 ...
도와주세요..
> insert into imsi_del ( > select b.item,b.user,b.qty,a.readamt,sum(b.qty*1000) > from table01 a, table02 b > where a.user=b.user and b.item='18' > group by b.item,b.user,b.qty,a.readamt );
246 개가 인서트 되었습니다.
> select count(*) from table02 where item='18';
249 개가 카운트 됨..
감사합니다. ^^
|