Non, c'est grâce à l'optimalisation de "count".
(cursor_sharing=EXACT)Code:
1
2
3
4 select count (a) from t1 where x <= 501; select count (x) from t1 where x <= 502; select count (1) from t1 where x <= 503; select count (b) from t1 where x <= 504;