关闭。这个问题需要更加突出重点。它目前不接受答案。**想改进这个问题吗?**通过编辑这篇文章更新这个问题,使它只关注一个问题。
10个月前关门了。改进这个问题我在oracle数据库中定义了一个视图,我想删除它。我怎么能放弃一个观点?
r6vfmomb1#
根据oracle关于drop view(oracle db2 0c)的文档,语法(在“description of the illustration drop\u view.eps”中)是:下拉视图[模式]视图[层叠约束];..最简单的形式,如果你的viewname是 emp_view ,将是: DROP VIEW emp_view; 注意:chamithrathenuwara对“如果oraclesql中存在dropview”的回答也表明了这一点。
emp_view
DROP VIEW emp_view;
1条答案
按热度按时间r6vfmomb1#
根据oracle关于drop view(oracle db2 0c)的文档,语法(在“description of the illustration drop\u view.eps”中)是:
下拉视图[模式]视图[层叠约束];
..最简单的形式,如果你的viewname是
emp_view
,将是:DROP VIEW emp_view;
注意:chamithrathenuwara对“如果oraclesql中存在dropview”的回答也表明了这一点。