Back again,
This time, I'm selecting data from two tables at once. My SQL query is working fine, but my problem is, I have columns in each table that have the same name, example:
table_1
column_1
column_2
table_2
column_1
column_2
What I want to know is, how can I reference to only the value of column_1 in table_1 and not column_1 in both? I've tried something similar to:
<%=rsLa("table_1.column_1")%>
But I'm getting a error saying that the item cannot be found. If it's any help, my SQL query is below.
Any Ideas?
ta