# EXTRACT 关于 Extract 操作和其它日期时间函数的对应关系,下列说法正确的是: 1. `extract(mirosecond from date)` 相当于 `ms(date)` 2. `extract(second from date)` 相当于 `second(date)` 3. `extract(minute from date)` 相当于 `minute(date)` 4. `extract(hour from date)` 相当于 `hour(date)` 5. `extract(day from date)` 相当于 `day(date)` 6. `extract(week from date)` 相当于 `week(date)` 7. `extract(month from date)` 相当于 `month(date)` 8. `extract(quarter from date)` 相当于 `quarter(date)` 9. `extract(year from date)` 相当于 `year(date)`