动态改变列

数据库

2008-06-11 15:00


增加
sql="alter table qiye add 列1 text(30) default 大师傅士大夫 ,列2 text(30) not null "
conn.execute(sql)

later table 表 add 列 类型()[default] 值         ///////////字符型数据不需要引号

删除
sql="alter table qiye drop column 字段1,字段2"
conn.execute(sql)


修改
sql="alter table qiye alter column 字段 int default 1000"
conn.execute(sql)