select prod_name,prod_price from Products
where prod_price >= 3 and prod_price <= 6  // 双边条件的时候需要用and连接,当使用 3 <= prod_price <= 6的语法会报错。