有没有办法一起查询别名和分区?

时间:2020-05-31 16:30:03

标签: sql oracle oracle11g oracle12c

我想像

一样查询

select enp.LAST_NAME from EMPLOYEES enp partition("P20120101");

当我尝试oracle说;

> ORA-00924: missing BY keyword

有没有办法同时使用别名和分区?

1 个答案:

答案 0 :(得分:1)

正确的语法是

FROM <TABLE_NAME> PARTITION(<PARTITION_NAME>) <ALIAS_NAME>

所以, 尝试select enp.LAST_NAME from EMPLOYEES partition("P20120101") enp;