您可以从元表中选择视图,如下所示(如果使用旧版本,实际选择可能会有所不同,请参见此处,例如
http://www.alberton.info/postgresql_meta_info.html)
原文链接:https://www.f2er.com/postgresql/191862.htmlSELECT 'DROP VIEW ' || table_name || ';' FROM information_schema.views WHERE table_schema NOT IN ('pg_catalog','information_schema') AND table_name !~ '^pg_';