已知数据库ds库中有phones表,表中包含Brand(品牌),model(型号),colour(颜色)等字段...
A.select * from ds.phones where Brand="华为"and model="P20"
B.select * from ds.phones where Brand="华为"or model="P20"
C.select * from ds.phones where having"华为"and"P20"
D.select * from ds.phones where having"华为"or"P20"