pacificwaters
Programmer
I execute this statement:
select table1.column1, table2.column2 from table1, table2;
and recieve this result:
col1val1 col2val1
col1val2 col2val1
col1val1 col2val2
col1val2 col2val2
what do i change in the above statement, so that i get this result:
col1val1 col2val1
col1val2 col2val2
thanks.
select table1.column1, table2.column2 from table1, table2;
and recieve this result:
col1val1 col2val1
col1val2 col2val1
col1val1 col2val2
col1val2 col2val2
what do i change in the above statement, so that i get this result:
col1val1 col2val1
col1val2 col2val2
thanks.