使用数据库表student存放学生信息,其中birthday字段存放学生生日,查询该表中1980年9月15日及...
A.SELECT*FROMstudentWHEREbirthday>=’1980-09-15’;
B.SELECT*FROMstudentWHEREbirthday>=’15-9月-1980’;
C.SELECT*FROMstudentWHERETO_DATE(birthday,’YYYY-MM-DD’)>=’2009-10-1’;
D.SELECT*FROMstudentWHEREbirthday>=TO_CHAR(’1980-09-15’,’YYYY-MM-DD’);