First option:
SELECT Table1.* ,Table2.Price AS Price FROM Table1,Table2 WHERE Table1.ID = Table2.ID
Second op
They're both joins, the first is just using the implicit syntax and the second is using the explicit syntax.