ドロップシーケンス
DROP SEQUENCE
ステートメントは、TiDB 内のシーケンス オブジェクトを削除します。
概要
- DropSequenceStmt
- IfExists
- TableNameList
- TableName
DropSequenceStmt ::=
'DROP' 'SEQUENCE' IfExists TableNameList
IfExists ::= ( 'IF' 'EXISTS' )?
TableNameList ::=
TableName ( ',' TableName )*
TableName ::=
Identifier ('.' Identifier)?
例
DROP SEQUENCE seq;
Query OK, 0 rows affected (0.10 sec)
DROP SEQUENCE seq, seq2;
Query OK, 0 rows affected (0.03 sec)
MySQL 互換性
このステートメントは TiDB の拡張機能です。実装は MariaDB で利用可能なシーケンスに基づいてモデル化されています。