select 
 t1.col1
 t1.col2
 s1.Col2
from t1
left join s1 on t1.col1 = s1.col1where s1.col2= ?问题:
对子表(s1)限定,是否会影响主表(t1),查询的结果?