>>>>> "Patric" == Patric de Waha <genlok@stripped> writes:
Patric> Hi,
Patric> Ok I 've two questions :)
1)
<cut> (Already answered)
Patric> 2) When I do a SELECT *,some_slowfunction(x) from tblads join xx on w=y
Patric> where n=s;
Patric> :)
Patric> Now what I want to know is: Is the some_slowfunction(x) function
Patric> calculated
Patric> before the where applies to the table?!
The SELECT part is calculated only when needed (In this case just
before sending the result row to the client)
Regards,
Monty