The DROP DEFAULT SHADOW ALGORITHM syntax is used to drop the default shadow algorithm from the current database.
DropDefaultShadowAlgorithm ::=
'DROP' 'DEFAULT' 'SHADOW' 'ALGORITHM' ifExists?
ifExists ::=
'IF' 'EXISTS'
ifExists clause is used to avoid Default shadow algorithm not exists error.DROP DEFAULT SHADOW ALGORITHM;
ifExists clauseDROP DEFAULT SHADOW ALGORITHM IF EXISTS;
DROP, DEFAULT, SHADOW, ALGORITHM, IF, EXISTS
