第17题:[多选题]以下SQL()能够在Employee表中查询出所有年龄(age)在25到35岁之间的员工信息(包含25岁和35岁) 。【选两项】 A.select * from Employee where age>=25 and age<=35 B.select * from Employee where age>=25 or age<=35 C. select * from Employee where age in(35,25) D.select * from Employee where age between 25 and 35 参考答案:AD