我有一个退出的视图,需要在其中添加其他where子句。我没有权限尝试在Oracle 11g上出错。最好的方法是什么?
create view XYZ as
SELECT column1, column2, column3, column4
FROM table_name
where column 1 in ('aa', 'bb');
我只想用where子句中的附加值更新视图
SELECT column1, column2, column3, column4
FROM table_name
where column 1 in ('aa', 'bb', 'cc');
答案 0 :(得分:0)
您只能使用ALTER VIEW
来定义,修改或删除视图约束。
要重新定义视图,必须使用create or replace view
。
使用适当的架构/所有者名称构造一条语句,如果您没有权限,请超级用户或DBA执行该语句。
CREATE OR REPLACE VIEW schemaname.yourviewname AS
SELECT column1, column2, column3, column4
FROM schema_name.table_name
where column_1 in ('aa', 'bb', 'cc');
请确保您要求他们授予所有必需的特权,以便能够从中读取内容,我相信您应该已经拥有。