scan d’une table
L’op´eration de base c’est le scan (parcours) d’une table.
Dans les exemples j’utilise la table suivante :
c r e a t e t a b l e t e s t ( a i nt , b i nt , c i n t ) ;
c r e a t e i n d e x i n d a on t e s t u s i n g b t r e e ( a ) ;
c r e a t e i n d e x ind b on t e s t u s i n g h as h ( b ) ;
i n s e r t i n t o t e s t
v a l u e s ( 1 , 1 , 1 ) , ( 2 , 2 , 2 ) , ( 3 , 3 , 3 ) , ( 4 , 4 , 4 ) ,
( 5 , 5 , 5 ) ;