No, there is no standard way to drop a table and all associated views. I know Postgres has a CASCADE option but that's implementation specific - MySQL accepts CASCADE but does absolutely nothing with it.
2
Ross Bush
On
There is not a standardized command across all rdms that will drop a table and it's bounded view(s) in one operation.
No, there is no standard way to drop a table and all associated views. I know Postgres has a
CASCADE
option but that's implementation specific - MySQL acceptsCASCADE
but does absolutely nothing with it.