home *** CD-ROM | disk | FTP | other *** search
- *****************************************************************
- * * 09/92 SQLTRAN.PRG *
- *****************************************************************
- * * Author's Name: Jeb Long *
- * * *
- * * Description: *
- * * This program illustrates how to use SQL SELECT command *
- * * to relate two tables using a one to many relationship. *
- *****************************************************************
- SELECT * FROM clients c,transact t , item i;
- WHERE t.client_id= ANY (select x.client_id from clients x) ;
- AND t.inv_no = i.inv_no ;
- ORDER by c.client_id ;
- INTO CURSOR Trans