Duplicate Columns in Recordset
I created a recordset in Bindings with a SQL statement that LEFT JOINs three tables in DW CS4. All three tables use id as a column name for the key. With this query id appears twice in the Recordset list. In the SQL query they're qualified (e.g., t1.id and t2.id) I can figure out which is which by the order of appearance in the Recordset list and the php page works fine. Is there some way to have a qualified name like in the SELECT? Without a qualification it makes the code confusing:
<td><?php echo $row_VCH['id']; ?></td>
<td><?php echo $row_VCH['name']; ?></td>
<td><?php echo $row_VCH['id']; ?></td>
...
Is there a better way to handle these types of queries instead of manually entering them?
Thanks,
Curt
