如何修改interbase数据库中表的结构?(20分)

在原有的表上加一字段(add),减一字段(drop)
alter table tablename
add fieldname fieldtype allownull,
drop fieldname fieldtype


例:在rk表上加一rq字段,删一bz字段
atlter table
add rq date not null,
drop bz
 
用Sql Explore挺方便的!
如果在程序里用Sql语句!
 
多人接受答案了。
 
顶部