|
>We have a new customer file that is a mirror >image of the customer master (It's been like >that forever). I execute a query over the >customer master in a program to fill a subfile. >I need to also get the records from the new >customer file and insert them into the cursor >before I fill the subfile. Sounds like a job for UNION. select name,address from custmas union select name,address from newmas order by 1 The key is that both SELECT statements return the exact same type of columns; you can't do NAME,ADDRESS in one and ARAMT,ADDRESS in the other. You can't ORDER BY a column name; you need to refer to the column number. Finally, if you need to n=know where the records came from, use a constant: select 1,name,address from custmas union select 2,name,address from newmas order by 2 Hope that helped. --buck
As an Amazon Associate we earn from qualifying purchases.
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.