Article ID: 101520
Article Last Modified on 7/30/2001
If the <from clause> contains more than one <table reference> with no intervening <derived table> or <joined table>, then the descriptors of the columns of the result of the <from clause> are the descriptors of the columns of the tables identified by the <table reference>s, in the order in which the <table reference>s appear in the <from clause> and in the order in which the columns are defined within each table.
// Table1 has a column 'address', and so does Table2 select * from Table1, Table2The 'address' column can be differentiated as being from Table1 or Table2 depending on its position in the results set. The 'address' column from Table1 will always come before the 'address' column in Table2.
Additional query words: 1.00
Keywords: KB101520