为什么我不能为Oracle DB中的表提供别名?我试着写一个像这样的声明:
select count(id) from users as usr where usr.dept = "SVC";
但甲骨文给我一个错误。当我在MySQL中使用类似的东西时,我不记得有问题了。
如何为Oracle中的表提供别名?
答案 0 :(得分:5)
Oracle不允许as
表别名,只允许列别名。所以:
select count(id)
from users usr
where usr.dept = 'SVC';