You should always use the format
tablename.colname
for statements involving more than one table, otherwise the DB has to guess which one you mean when the tables have the same named column.
In fact, use a table alias for shorter code:
select t1.col1
from table1 t1, table2 t2
where t1.col1 = t2.col1