Help for this page

Select Code to Download


  1. or download this
    select first_name, last_name, credit_limit
    from customer
    where credit_limit between 500 and 800
    
  2. or download this
    select first_name, last_name, credit_limit
    from customer
    where credit_limit > 500 and credit_limit < 800