第一种写法:因为是等于或者高于9美元,直接用>= select prod_id,prod_name from Products where prod_price>=9

第二种写法:where or 两者条件中的一个 select prod_id,prod_name from Products where prod_price=9 or prod_price>9