内连接(Inner join)是指表连接的连接结果只包含那些完全满足连接条件的记录。
select t1.col1,t1.col2,t2.col3 from t1,t2 where t1.col2=t2.col2
或
select t1.col1,t2.col3 from t1 join t2 on (t1.col2=t2.col2)
如果内连接中除了带连接条件外,还带了额外的限制条件,该限制条件在目标sql中出现的位置不会对最终执行的结果产生影响。若想添加一个t1.col1=1的现在条件,这个时候可以如下这么写:
select t1.col1,t2.col3 from t1 join t2 on (t1.col2=t2.col2 and t1.col1=1)
或
select t1.col1,t2.col3 from t1 join t2 on (t1.col2=t2.col2) where t1.col1=1【注意】:如果是外连接的话,就会影响了