Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
删除序列。
DROP SEQUENCE [ owner.] sequence-name
如果无法找到指定的序列,则返回一条错误消息。删除序列时,数据库服务器会自动删除序列名称的所有同义词。
必须具有 DBA 特权,或者是序列的所有者并具有 RESOURCE 特权。
无
SQL/2008 序列构成 SQL/2008 可选语言功能 T176。
以下示例删除一个名为 Test 的序列:
DROP SEQUENCE Test;