A CASCADE option determines the deletion behavior for objects (e.g. tables, users), that is, it defines whether certain dependencies are to be taken into account when objects are deleted.
<cascade_option> ::= CASCADE | RESTRICT
CASCADE: Dependencies are not taken into account
RESTRICT: Dependencies are to be taken into account
See also: