× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



It's called Excel.  Works great.  Now, it may help if you define a view 
that combines all the data into a view of what you want.  For example if 
your relational looks like

CUSTMAST table
CUSTNUMBER
NAME

ORDER table
ORDERNBR
CUSTNUMBER

ORDERLINE table
ORDERNBR
LINENBR
ITEMNBR
QTYORD

ITEMMAST table
ITEMNBR
DESCRIPTION

Then run this
CREATE VIEW ORDERVIEW AS
(((SELECT ORDERNBR, ORDER.CUSTNUMBER,
   NAME,
   LINENBR, ITEMNBR, QTYORD,
   DESCRIPTION
 FROM ORDER
 LEFT OUTER JOIN CUSTMAST USING CUSTNUMBER)
 LEFT OUTER JOIN ORDERLINE ON ORDERNBR)
LEFT OUTER JOIN ITEMMAST ON ITEMNNBR)

Then simply use this
http://faq.midrange.com/data/cache/194.html

Most of the PC products basically step you through the creating of the 
view.  In other words, you still have to do your homework.

Rob Berendt

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.