如何删除Interbase数据库中我已经建立的一个generator?

如何删除Interbase数据库中已经建立的一个generator
另外:
我用下面的删除语句怎么出现错误.
数据库:
create table abc(
bh integer not null,
name varchar(20) not null
)
内容:
bh name
-------------
1 abcd
2 hello0
操作:
delete abc where bh=1
出现错误.
---------------------------------------------------------------

1.只能从系统表里面删除
DELETE FROM RDB$GENERATOR WHERE RDB$GENERATOR_NAME = ‘your_name’;

2.应该是delete from abc where bh=1

Published At
Categories with 数据库类
Tagged with
comments powered by Disqus