When you query a database, you can query multiple tables. So if you had a table called Table_1 and Table_2, to get colum1 from Table_1, you would write a query like:
SELECT Table_1.colum1 FROM Table_1
If you wanted to select columnq from both tables, you would write:
SELECT Table_1.column1, Table_2.column1 FROM Table_1, Table_2
You only need to specify the table if you are selecting from more than 1 table.
The sql syntax is:
SELECT table.column FROM table WHERE table.column = table.column
where you substitute your table and column names.
I hope this has helped.
Feel free to email me directly with the problem, as i am always willing to help.