|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
SELECT distinct a.vendor_id 供应商编码
,a.VENDOR_NAME 供应商名称
,msib.segment1 物料编码
,msib.description 物料名称
,b.UNIT_PRICE 单价
,c.REPLY_DATE 回应日期
FROM PO_VENDORS a
,PO_LINES_ALL b
,PO_HEADERS_ALL c
,mtl_system_items_b msib
WHERE msib.organization_id=84
and c.vendor_id=a.vendor_id
and b.po_header_id=c.po_header_id
and msib.description=b.item_description
and to_char(c.reply_date,'YYYY-MM-DD')=(select max(to_char(c.reply_date,'YYYY-MM-DD')) from PO_HEADERS_ALL c )
--and to_char(c.reply_date,'YYYYMMDD')='20061120'
and a.vendor_id=nvl(P_VENDOR_ID,a.vendor_id)
order by c.reply_date;
有没有谁能详细告知一下上述语句的详细的执行过程,就是先执行什么后执行什么! |
|