select prod_name,prod_price from Products where prod_price >= 3 and prod_price<=6 -- between select prod_name,prod_price from Products where prod_price between 3 and 6
两种解法,在使用between的时候,要注意验证,他的两侧是否是 >= 还是不带=。