in reply to Re: Re: Re: Re: Maximum DBI query length?
in thread Maximum DBI query length?
or you can assign aliasesSELECT contact.field1, contact.field2, business.field1, acn.field1 FROM contact, business, acn WHERE ... (Etc.)
SELECT c.field1, c.field2, b.field1, a.field1 FROM contact c, business b, acn a WHERE ... (Etc.)
OK?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: (boo) RE5 Maximum DBI query length?
by Merlin83 (Novice) on May 07, 2001 at 22:01 UTC | |
by boo_radley (Parson) on May 07, 2001 at 22:02 UTC |