这是在MySQL中搜索的正确方法吗?

时间:2012-08-26 22:24:04

标签: mysql

我有两张桌子。 t1和t2。我想选择来自t1并在t2中发生的值。我写的是以下内容:

select col1 from t1, t2
where t1.col1y=t2.col2;

这是搜索价值的正确方法吗?

1 个答案:

答案 0 :(得分:0)

是的,这是有效的,但这是编写联接的旧形式。使用新表格:

select t1.col1
from t1
inner join t2 on t1.col1 = t2.col2