I have a problem with the where condtions and inner join conditions.
They are:
ex:
select * from table1 T
inner join table2 F on F.tkey=T.tkey and F.date >= '20140104'
and
select * from table1 T
inner join table2 F on F.tkey=T.tkey
where F.date >= '20140104'
**here which will be execute faster and why ?