第六章<过滤数据> P35 1. select prod_name,prod_price from products where prod_price=2.5; 2.select prod_name,prod_price from products where prod_price='2.5'; #两个语句得到的结果一样,因为指定的是数值. P36 select prod_name,prod_price from products where prod_name='fuses'; #当指定的是…