Re: [GENERAL] select, columns, and aliases

2004-07-23 Thread CSN
??? --- Michael Kleiser <[EMAIL PROTECTED]> wrote: > select a.*, b.* > from tablea AS a > inner tableb AS b > on a.id=b.aid; > > > CSN schrieb: > > Is it possible to automatically prefix a table > alias > > (or table name or something else even) to each > column > > in a select list? For

Re: [GENERAL] select, columns, and aliases

2004-07-23 Thread Bruno Wolff III
On Fri, Jul 23, 2004 at 02:48:01 -0700, CSN <[EMAIL PROTECTED]> wrote: > Is it possible to automatically prefix a table alias > (or table name or something else even) to each column > in a select list? For example: > > select a.*, b.* > from tablea a > inner tableb b > on a.id=b.aid; > > result