📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

DROP SEQUENCE



Deletes an existing sequence from TiDB Cloud Lake.

Syntax

DROP SEQUENCE [IF EXISTS] <sequence>
ParameterDescription
<sequence>The name of the sequence to be deleted.

Examples

-- Delete a sequence named staff_id_seq DROP SEQUENCE staff_id_seq;

Was this page helpful?