たとえば、どちらが良いですか:
select * from t1, t2 where t1.country='US' and t2.country=t1.country and t1.id=t2.id
また
select * from t1, t2 where t1.country'US' and t2.country='US' and t1.id=t2.id
データベースの作業が少なくてすむので、結果が速くなります。
注: Sybaseであり、の両方のテーブルにインデックスがありcountry+id
ます。