Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

query help plz

Status
Not open for further replies.

whtisthat

Technical User
Mar 27, 2004
12
US
I need list of all vendors. with this I am getting some duplicate any help plz
SELECT
distinct pv.vendor_id,
pv.vendor_name ,
pvs.address_line1,
pvs.address_line2,
pvs.address_line3,
pvs.city ,
pvs. state,
pvs.zip
FROM po.po_vendors pv , apps.po_vendor_sites pvs
WHERE pv.vendor_id = pvs.vendor_id
and pvs.pay_site_flag = 'Y'
and pv.enabled_flag = 'Y'
and pv.VENDOR_TYPE_LOOKUP_CODE = 'VENDOR'
order by 2
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top