HomeSQL CommandsDDL CommandsSequenceDROP SEQUENCE本页总览DROP 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;