所屬科目:教甄◆電腦科專業
下列為資料表score的結構: 欲找出國語與數學分數皆在80~90範圍名單所使用的SQL命令為:(A)Select from score where (chin>=80 and chin<=90) or (math>=80 and math<=90)(B)Select from score where (chin>=80 or chin<=90) or (math>=80 or math<=90)(C)Select from score where (chin>=80 or chin<=90) and (math>=80 or math<=90)(D)Select from score where (chin>=80 and chin<=90) and (math>=80 and math<=90)