SQL CommandsDDL CommandsSequenceDROP SEQUENCEOn this pageDROP SEQUENCEIntroduced or updated: v1.2.426 Deletes an existing sequence from Databend. Syntax DROP SEQUENCE [IF EXISTS] <sequence> ParameterDescription<sequence>The name of the sequence to be deleted. Examples -- Delete a sequence named staff_id_seqDROP SEQUENCE staff_id_seq;