|
|

楼主 |
发表于 2008/11/17 20:14:00
|
显示全部楼层
终于搞定了,呵呵!
查阅了1998年4月发布的 Project Technical Reference Manual(在此感谢oracle上海公司的顾问)
现奉上sql:
select *
from pa_draft_invoice_items i,
pa_draft_invoices_all a,
pa_events e,
ra_customer_trx_all r,
ra_customer_trx_lines_all tr
where a.project_id = i.project_id
and i.project_id = e.project_id
and i.task_id = e.task_id
and e.event_num = i.event_num
and a.draft_invoice_num = i.draft_invoice_num
and r.trx_number = a.ra_invoice_number
and r.customer_trx_id = tr.customer_trx_id
搞定 :/hanx |
评分
-
查看全部评分
|