
 
 B U I L D   T A B L E   p e o p l e   ( n a m e   C H A R ( 1 0 0 )   N O T   N U L L , a g e   I N T E G E R , i q   I N T E G E R , a m o u n t   I N T E G E R   N O T   N U L L ) ; 
 
 
 
 !   O r i g i n a l   t a b l e : 
 
 P O P U L A T E   p e o p l e   ( n a m e , a g e , i q , a m o u n t ) 
 
 	 { 
 
 	 ' G e o r g e ' , 	 3 4 , 	 2 0 0 , 	 1 0 0 0 0 
 
 	 ' B i l l y '   , 	 4 0 , 	 1 5 0 , 	 9 0 0 0 0 
 
 	 ' Q u e e n ' , 	 6 2 , 	 2 0 , 	 	 8 0 0 0 0 
 
 	 ' R o n a l d ' , 	 8 0 , 	 2 , 	 	 7 0 0 0 0 
 
 	 ' D e m m i e ' , 	 1 , 	 3 1 2 , 	 1 0 0 0 0 
 
 	 ' W a l l y '   , 	 2 8 , 	 9 9 , 	 	 6 0 0 0 0 
 
 	 ' W a m m y ' , 	 2 9 , 	 1 1 2 , 	 5 0 0 0 0 
 
 	 ' W a p p y ' , 	 3 0 , 	 8 9 , 	 	 3 0 0 0 0 
 
 	 ' S a n d y ' , 	 3 3 , 	 7 7 , 	 	 4 0 0 0 0 
 
 	 ' C o l e t t e ' , 	 3 3 , 	 1 9 5 , 	 2 0 0 0 0 
 
 	 } 
 
 
 
 P R I N T   T A B L E   p e o p l e ; 	 
 
 
 
 C R E A T E   I N D E X   i n d e x 1   O N   p e o p l e ( a m o u n t ) ; 
 
 C R E A T E   I N D E X   i n d e x 2   O N   p e o p l e ( a m o u n t , a g e ) ; 
 
 C R E A T E   I N D E X   i n d e x 3   O N   p e o p l e ( a g e ) ; 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 !   1 .   N o   i n d e x ,   n o   r e s t r i c t i o n ,   n o   o r d e r   b y   - > A 
 
 Q U E R Y   *   F R O M   p e o p l e ; 
 
 R E S U L T S   { 0   1   2   3   4   5   6   7   8   9 } 
 
 
 
 !   2 a .   N o   i n d e x ,   r e s t r i c t i o n ,   n o   o r d e r   b y   - > B 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   i q > 1 5 0 ; 
 
 R E S U L T S   { 0   4   9 } 
 
 
 
 !   2 b .   N o   i n d e x ,   r e s t r i c t i o n ,   n o   o r d e r   b y   - > B 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   i q > = 1 5 0 ; 
 
 R E S U L T S   { 0   1   4   9 } 
 
 
 
 !   3 .   N o   i n d e x ,   n o   r e s t r i c t i o n ,   o r d e r   b y   - > C 
 
 Q U E R Y   *   F R O M   p e o p l e   O R D E R   B Y   n a m e ; 
 
 R E S U L T S   { 1 , 9 , 4 , 0 , 2 , 3 , 8 , 5 , 6 , 7 } 
 
 
 
 !   4 .   N o   i n d e x ,   r e s t r i c t i o n ,   o r d e r   b y   - > D 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   i q < 1 1 2   O R D E R   B Y   n a m e ; 
 
 R E S U L T S   { 2 , 3 , 8 , 5 , 7 } 
 
 
 
 !   4 b .   N o   i n d e x ,   r e s t r i c t i o n ,   o r d e r   b y   - > D 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   i q < = 1 1 2   O R D E R   B Y   n a m e ; 
 
 R E S U L T S   { 2 , 3 , 8 , 5 , 6 , 7 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 !   5 .   O n e   i n d e x ,   n o   r e s t r i c t i o n ,   o r d e r   b y   - > E 
 
 Q U E R Y   *   F R O M   p e o p l e   O R D E R   B Y   a g e ; 
 
 R E S U L T S   { 4 , 5 , 6 , 7 , 8 , 9 , 0 , 1 , 2 , 3 } 
 
 
 
 !   6 .   O n e   i n d e x ,   n o   r e s t r i c t i o n ,   o r d e r   b y   - > F 
 
 Q U E R Y   *   F R O M   p e o p l e   O R D E R   B Y   a g e   D E S C ; 
 
 R E S U L T S   { 3 , 2 , 1 , 0 , 9 , 8 , 7 , 6 , 5 , 4 } 
 
 
 
 !   7 .   T w o   i n d e x e s ,   n o   r e s t r i c t i o n ,   o r d e r   b y   - > b e s t   E 
 
 Q U E R Y   *   F R O M   p e o p l e   O R D E R   B Y   a m o u n t ; 
 
 R E S U L T S   { 0 , 4 , 9 , 7 , 8 , 6 , 5 , 3 , 2 , 1 } 
 
 
 
 !   8 .   T w o   i n d e x e s ,   n o   r e s t r i c t i o n ,   o r d e r   b y   - > b e s t   F 
 
 Q U E R Y   *   F R O M   p e o p l e   O R D E R   B Y   a m o u n t   D E S C ; 
 
 R E S U L T S   { 1 , 2 , 3 , 5 , 6 , 8 , 7 , 9 , 4 , 0 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 W I N D O W   O N ; 
 
 
 
 !   9 .   O n e   i n d e x ,   n o   r e s t r i c t i o n ,   o r d e r   b y   - > E 
 
 Q U E R Y   *   F R O M   p e o p l e   O R D E R   B Y   a g e ; 
 
 R E S U L T S   { 4 , 5 , 6 , 7 , 8 , 9 , 0 , 1 , 2 , 3 } 
 
 
 
 !   1 0 .   O n e   i n d e x ,   n o   r e s t r i c t i o n ,   o r d e r   b y   - > F 
 
 Q U E R Y   *   F R O M   p e o p l e   O R D E R   B Y   a g e   D E S C ; 
 
 R E S U L T S   { 3 , 2 , 1 , 0 , 9 , 8 , 7 , 6 , 5 , 4 } 
 
 
 
 !   1 1 .   T w o   i n d e x e s ,   n o   r e s t r i c t i o n ,   o r d e r   b y   - > b e s t   E 
 
 Q U E R Y   *   F R O M   p e o p l e   O R D E R   B Y   a m o u n t ; 
 
 R E S U L T S   { 0 , 4 , 9 , 7 , 8 , 6 , 5 , 3 , 2 , 1 } 
 
 
 
 !   1 2 .   T w o   i n d e x e s ,   n o   r e s t r i c t i o n ,   o r d e r   b y   - > b e s t   F 
 
 Q U E R Y   *   F R O M   p e o p l e   O R D E R   B Y   a m o u n t   D E S C ; 
 
 R E S U L T S   { 1 , 2 , 3 , 5 , 6 , 8 , 7 , 9 , 4 , 0 } 
 
 
 
 W I N D O W   O F F ; 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 !   1 3 a .   O n e   i n d e x ,   2 5 %   r e s t r i c t i o n   - > I 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a g e > = 6 2 ;   
 
 R E S U L T S   { 2   3 } 
 
 
 
 !   1 3 b .   O n e   i n d e x ,   < 2 5 %   r e s t r i c t i o n   - > I 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a g e > 6 2 ;   
 
 R E S U L T S   { 3 } 
 
 
 
 !   1 4 .   O n e   i n d e x ,   6 3 %   r e s t r i c t i o n   - > B 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a g e > 2 9 ; 
 
 R E S U L T S   { 0   1   2   3   7   8   9 } 
 
 
 
 !   1 5 a .   O n e   i n d e x ,   3 5 %   r e s t r i c t i o n   - > J 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a g e < 2 9 ;   
 
 R E S U L T S   { 4   5 } 
 
 
 
 !   1 5 b .   O n e   i n d e x ,   > 3 5 %   r e s t r i c t i o n   - > J 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a g e < = 2 9 ;   
 
 R E S U L T S   { 4   5   6 } 
 
 
 
 !   1 6 .   O n e   i n d e x ,   7 3 %   r e s t r i c t i o n   - > B 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a g e < 6 2 ; 
 
 R E S U L T S   { 0   1   4   5   6   7   8   9 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 W I N D O W   O N ; 
 
 
 
 !   1 7 .   O n e   i n d e x ,   2 5 %   r e s t r i c t i o n   - > I 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a g e > 6 0 ;   
 
 R E S U L T S   { 2   3 } 
 
 
 
 !   1 8 .   O n e   i n d e x ,   6 3 %   r e s t r i c t i o n   - > I 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a g e > 2 9 ; 
 
 R E S U L T S   { 0   1   2   3   7   8   9 } 
 
 
 
 !   1 9 .   O n e   i n d e x ,   3 5 %   r e s t r i c t i o n   - > J 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a g e < 2 9 ;   
 
 R E S U L T S   { 4   5 } 
 
 
 
 !   2 0 .   O n e   i n d e x ,   7 3 %   r e s t r i c t i o n   - > J 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a g e < 6 0 ; 
 
 R E S U L T S   { 0   1   4   5   6   7   8   9 } 
 
 
 
 W I N D O W   O F F ; 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 !   2 1 .   T w o   i n d e x e s ,   2 4 %   r e s t r i c t i o n   - > B e s t   I 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 7 0 0 0 0 ;   
 
 R E S U L T S   { 1   2 } 
 
 
 
 !   2 2 .   T w o   i n d e x e s ,   8 7 %   r e s t r i c t i o n   - > B 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 2 0 0 0 0 ; 
 
 R E S U L T S   { 1   2   3   5   6   7   8 } 
 
 
 
 !   2 3 .   T w o   i n d e x e s ,   1 2 %   r e s t r i c t i o n   - > B e s t   J 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < 2 0 0 0 0 ;   
 
 R E S U L T S   { 0   4 } 
 
 
 
 !   2 4 .   T w o   i n d e x e s ,   8 7 %   r e s t r i c t i o n   - > B 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < 8 0 0 0 0 ; 
 
 R E S U L T S   { 0   3   4   5   6   7   8   9 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 !   2 5 a .   T w o   i n d e x e s   o n   a m o u n t   ( 2 4 % ) ,   o n e   o n   a g e   - > B e s t   O 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 7 0 0 0 0   A N D   a g e > 3 3 ;   
 
 R E S U L T S   { 1 , 2 } 
 
 
 
 !   2 5 b .   T w o   i n d e x e s   o n   a m o u n t ,   o n e   o n   a g e   - > B e s t   O 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > = 7 0 0 0 0   A N D   a g e > 4 0 ;   
 
 R E S U L T S   { 2   3 } 
 
 
 
 !   2 5 c .   T w o   i n d e x e s   o n   a m o u n t ,   o n e   o n   a g e   - > B e s t   O 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 7 0 0 0 0   A N D   a g e > = 4 0 ;   
 
 R E S U L T S   { 1   2 } 
 
 
 
 !   2 5 d .   T w o   i n d e x e s   o n   a m o u n t ,   o n e   o n   a g e   - > B e s t   O 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > = 7 0 0 0 0   A N D   a g e > = 4 0 ;   
 
 R E S U L T S   { 1   2   3 } 
 
 
 
 !   2 6 a .   T w o   i n d e x e s   o n   a m o u n t ,   o n e   o n   a g e   - > B e s t   P 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < 3 0 0 0 0   A N D   a g e > 3 0 ; 
 
 R E S U L T S   { 0 , 9 } 
 
 
 
 !   2 6 b .   T w o   i n d e x e s   o n   a m o u n t ,   o n e   o n   a g e   - > B e s t   P 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < = 3 0 0 0 0   A N D   a g e > 3 0 ; 
 
 R E S U L T S   { 0   9 } 
 
 
 
 !   2 6 c .   T w o   i n d e x e s   o n   a m o u n t ,   o n e   o n   a g e   - > B e s t   P 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < 3 0 0 0 0   A N D   a g e > = 3 0 ; 
 
 R E S U L T S   { 0   9 } 
 
 
 
 !   2 6 d .   T w o   i n d e x e s   o n   a m o u n t ,   o n e   o n   a g e   - > B e s t   P 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < = 3 0 0 0 0   A N D   a g e > = 3 0 ; 
 
 R E S U L T S   { 0   7   9 } 
 
 
 
 !   2 7 .   T w o   i n d e x e s   o n   a m o u n t   ( 7 4 % ) ,   o n e   o n   a g e   ( 5 8 % )   - > B 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 3 0 0 0 0   A N D   a g e > 3 3 ;   
 
 R E S U L T S   { 1   2   3 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 W I N D O W   O N ; 
 
 
 
 !   2 8 .   T w o   i n d e x e s   o n   a m o u n t   ( 2 4 % ) ,   o n e   o n   a g e   ( 5 8 % )   - > B e s t   O 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 7 0 0 0 0   A N D   a g e > 3 3 ;   
 
 R E S U L T S   { 1   2 } 
 
 
 
 !   2 9 .   T w o   i n d e x e s   o n   a m o u n t   ( 1 2 % ) ,   o n e   o n   a g e   ( 5 8 % )   - > B e s t   P 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < 2 0 0 0 0   A N D   a g e > 3 3 ; 
 
 R E S U L T S   { 0 } 
 
 
 
 !   3 0 .   T w o   i n d e x e s   o n   a m o u n t   ( 7 4 % ) ,   o n e   o n   a g e   ( 5 8 % )   - > B e s t   O 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 3 0 0 0 0   A N D   a g e > 3 3 ;   
 
 R E S U L T S   { 1   2   3 } 
 
 
 
 W I N D O W   O F F ; 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 A C C E S S   R E A D ; 
 
 
 
 !   3 1 a .   T w o   i n d e x e s ,   2 4 %   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   - > B e s t   M 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 7 0 0 0 0   O R D E R   B Y   a m o u n t ;   
 
 R E S U L T S   { 2 , 1 } 
 
 
 
 !   3 1 b .   T w o   i n d e x e s ,   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   - > B e s t   M 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > = 7 0 0 0 0   O R D E R   B Y   a m o u n t ;   
 
 R E S U L T S   { 3 , 2 , 1 } 
 
 
 
 !   3 1 c .   T w o   i n d e x e s ,   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   - > B e s t   M 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < 7 0 0 0 0   O R D E R   B Y   a m o u n t ;   
 
 R E S U L T S   { 0 , 4 , 9 , 7 , 8 , 6 , 5 } 
 
 
 
 !   3 1 d .   T w o   i n d e x e s ,   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   - > B e s t   M 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < = 7 0 0 0 0   O R D E R   B Y   a m o u n t ;   
 
 R E S U L T S   { 0 , 4 , 9 , 7 , 8 , 6 , 5 , 3 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 A C C E S S   R E A D ; 
 
 
 
 !   3 2 a .   T w o   i n d e x e s ,   2 4 %   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   - > B e s t   N 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 7 0 0 0 0   O R D E R   B Y   a m o u n t   D E S C ;   
 
 R E S U L T S   { 1 , 2 } 
 
 
 
 !   3 2 b .   T w o   i n d e x e s ,   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   - > B e s t   N 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > = 7 0 0 0 0   O R D E R   B Y   a m o u n t   D E S C ;   
 
 R E S U L T S   { 1 , 2 , 3 } 
 
 
 
 !   3 2 c .   T w o   i n d e x e s ,   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   - > B e s t   N 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < 7 0 0 0 0   O R D E R   B Y   a m o u n t   D E S C ;   
 
 R E S U L T S   { 5 , 6 , 8 , 7 , 9 , 4 , 0 } 
 
 
 
 !   3 2 d .   T w o   i n d e x e s ,   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   - > B e s t   N 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < = 7 0 0 0 0   O R D E R   B Y   a m o u n t   D E S C ;   
 
 R E S U L T S   { 3 , 5 , 6 , 8 , 7 , 9 , 4 , 0 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 A C C E S S   U P D A T E ; 
 
 
 
 !   3 3 .   T w o   i n d e x e s ,   2 4 %   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   - > B e s t   M   + w i n d o w 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 7 0 0 0 0   O R D E R   B Y   a m o u n t ;   
 
 R E S U L T S   { 2 , 1 } 
 
 
 
 A C C E S S   R E A D ; 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 !   3 4 a .   T h r e e   i n d e x e s ,   2 4 %   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   ( 2 K ' s ,   1   G ) - > B e s t   K 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 7 0 0 0 0   O R D E R   B Y   a g e ;   
 
 R E S U L T S   { 1 , 2 } 
 
 
 
 !   3 4 b .   T h r e e   i n d e x e s , r e s t r i c t i o n ,   o r d e r   b y   i n d e x   ( 2 K ' s ,   1   G ) - > B e s t   K 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > = 7 0 0 0 0   O R D E R   B Y   a g e ;   
 
 R E S U L T S   { 1 , 2 , 3 } 
 
 
 
 !   3 4 c .   T h r e e   i n d e x e s ,   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   ( 2 K ' s ,   1   G ) - > B e s t   L 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < 2 0 0 0 0   O R D E R   B Y   a g e ;   
 
 R E S U L T S   { 4 , 0 } 
 
 
 
 !   3 4 d .   T h r e e   i n d e x e s ,   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   ( 2 K ' s ,   1   G ) - > B e s t   L 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < = 2 0 0 0 0   O R D E R   B Y   a g e ;   
 
 R E S U L T S   { 4 , 9 , 0 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 !   3 5 .   T h r e e   i n d e x e s ,   7 4 %   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   ( 2 K ' s ,   1   G ) - > D 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 3 0 0 0 0   O R D E R   B Y   a g e ;   
 
 R E S U L T S   { 5 , 6 , 8 , 1 , 2 , 3 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 !   3 6 .   T h r e e   i n d e x e s ,   8 7 %   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   ( 2 K ' s ,   1   G ) - > G 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < 8 0 0 0 0   O R D E R   B Y   a g e ;   
 
 R E S U L T S   { 4 , 5 , 6 , 7 , 8 , 9 , 0 , 3 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 W I N D O W   O N ; 
 
 
 
 !   3 7 .   T h r e e   i n d e x e s ,   8 7 %   r e s t r i c t i o n ,   o r d e r   b y   i n d e x   ( 2 K ' s ,   1 G w   -   d i s c a r d e d ) - > B e s t   K 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < 8 0 0 0 0   O R D E R   B Y   a g e ;   
 
 R E S U L T S   { 4 , 5 , 6 , 7 , 8 , 9 , 0 , 3 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 W I N D O W   O F F ; 
 
 
 
 !   3 8 .   T w o   i n d e x e s ,   o r d e r   b y   i n d e x   ( 2 G ' s ) - > D 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   i q > = 1 5 0   O R D E R   B Y   a m o u n t ;   
 
 R E S U L T S   { 0 , 4 , 9 , 1 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 W I N D O W   O N ; 
 
 
 
 !   3 9 .   T w o   i n d e x e s ,   o r d e r   b y   i n d e x   ( 2 G w ' s   -   d i s c a r d e d ) - > D 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   i q > = 1 5 0   O R D E R   B Y   a m o u n t ;   
 
 R E S U L T S   { 0 , 4 , 9 , 1 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 !   4 0 a .   T w o   i n d e x e s   o n   a m o u n t   ( 2 4 % ) ,   o n e   o n   a g e   ( 5 8 % ) ,   o r d e r   b y   n o n - i n d e x   - > B e s t   Q 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 7 0 0 0 0   A N D   a g e > 3 3   O R D E R   B Y   i q ;   
 
 R E S U L T S   { 2 , 1 } 
 
 
 
 !   4 0 b .   T w o   i n d e x e s   o n   a m o u n t ,   o n e   o n   a g e ,   o r d e r   b y   n o n - i n d e x   - > B e s t   Q 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > = 7 0 0 0 0   A N D   a g e > 4 0   O R D E R   B Y   i q ;   
 
 R E S U L T S   { 3 , 2 } 
 
 
 
 !   4 0 c .   T w o   i n d e x e s   o n   a m o u n t ,   o n e   o n   a g e ,   o r d e r   b y   n o n - i n d e x   - > B e s t   Q 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > 7 0 0 0 0   A N D   a g e > = 4 0   O R D E R   B Y   i q ;   
 
 R E S U L T S   { 2 , 1 } 
 
 
 
 !   4 0 d .   T w o   i n d e x e s   o n   a m o u n t ,   o n e   o n   a g e ,   o r d e r   b y   n o n - i n d e x   - > B e s t   Q 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t > = 7 0 0 0 0   A N D   a g e > = 4 0   O R D E R   B Y   i q ;   
 
 R E S U L T S   { 3 , 2 , 1 } 
 
 
 
 !   4 1 .   T w o   i n d e x e s   o n   a m o u n t   ( 8 7 % ) ,   o n e   o n   a g e   ( 6 3 % ) ,   o r d e r   b y   n o n - i n d e x   - > D 
 
 Q U E R Y   *   F R O M   p e o p l e   W H E R E   a m o u n t < 8 0 0 0 0   A N D   a g e > 2 9   O R D E R   B Y   i q ; 
 
 R E S U L T S   { 3 , 8 , 7 , 9 , 0 } 
 
 
 
 ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
 
 ! 
 
 
 
 D R O P   I N D E X   i n d e x 1   F R O M   p e o p l e ; 
 
 D R O P   I N D E X   i n d e x 2   F R O M   p e o p l e ; 
 
 D R O P   I N D E X   i n d e x 3   F R O M   p e o p l e ; 