Hi everybody,
I have a table PO, has the field PO_number, PO_customer and PO_itemnumber
What I want to do is to list out all the 3 columns of information, by using distinct on PO_number and PO_customer
I find I can show out PO_number and PO_customer information by using this query:
select distinct PO_number, PO_customer
from PO
order by PO_number
By how can I get the PO_itemnumber?
Thank you very much
I have a table PO, has the field PO_number, PO_customer and PO_itemnumber
What I want to do is to list out all the 3 columns of information, by using distinct on PO_number and PO_customer
I find I can show out PO_number and PO_customer information by using this query:
select distinct PO_number, PO_customer
from PO
order by PO_number
By how can I get the PO_itemnumber?
Thank you very much