Hi,
assume I have the following query:
select * from Customer c
inner join Phone p
on p.custId = c.custId
where p.PhoneNo = '1234567'
and p.PhoneNoAreaCd = '890'
force order
does the force order hint also applies to the sequence of the where
condition? As a simplified example the impact of force order on the order
of the table is not necessarily justified here. But my question is about
its effect on the where conditions. Thanks for your looking into this.
Quentin