ドロップシーケンス
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で利用可能なシーケンスに基づいてモデル化されています。