Please help me t make below select query
Source table
name Amount  
 -----------
 A   2    
 B   3    
 C   2
 D   7
if limit is 5 then result table should be
name Amount  
 -----------
 A   2    
 B   3   
if limit is 8 then result table
name Amount  
 -----------
 A   2    
 B   3    
 C   2
 
     
    