I wrote a query to combine records in multiple tables. Tables named by Purchase Order, Purchase Order Item
   [ Note: The column names are not original names, it just for a model data]
In purchase order table have the order details like this,
id    date     vendorid   totalitems  totalqty   grossamnt   netamnt  taxamt
----------------------------------------------------------------------------
1   03/10/17     00001      2           6           12000     13000    1000
Purchase Order Item table have the order details like this,
poid  id  productcode  qty   rate  tax(%) taxamnt  total
--------------------------------------------------------
1      1     12001      3    6000   2.5    500     6500
2      1     12000      3    6000   2.5    500     6500
My Query is,
 select po.POID,po.SupplierId,po.TotalItems from 
  PurchaseOrder po, PurchaseOrderItem poi where po.POID=poi.POID group by 
  po.POID, po.SupplierId,po.TotalItems 
Query returns,
 id  vendorid  totalitems
--------------------------
 1     00001      2
 1     00001      2
Expected Output is,
id vendorid totalitems
------------------------
1    00001    2
 
    