问题背景
DROP VIEW temp_view;
报错信息:
Can't drop temp_view,because *** depend on it
解决方案
DROP VIEW temp_view CASCADE ;
该sql会删除所有依赖的视图
DROP VIEW temp_view;
报错信息:
Can't drop temp_view,because *** depend on it
DROP VIEW temp_view CASCADE ;
该sql会删除所有依赖的视图