首页 > 解决方案 > 删除有条件的表 - Oracle

问题描述

是否可以删除有条件的表格?

例如:

DROP table table_name where (select column from table) = (select column from table2)

注意:没有 PLSQL

标签: sqloracle

解决方案


不,您不能在drop table 语句中添加 where

你会得到错误ORA-00933: SQL command not properly ended


推荐阅读