space line
space line
space line
space line
space line
您现在的位置是: 技术文章>>

Access语句修改表

发布日期 2008-10-5 9:06:23
作者 shemily
出处 重用网
浏览次数 ...
今日浏览 ...
本月浏览 ...
我要留言 我要留言
space line
摘要
在Access中用SQL语句修改表结构
space line
详细内容

 

添加字段

alter table test

  add column str text(25) not null default ´none´

修改字段

alter table test

  alter column str text(30) not null

删除字段

alter table test

  drop column str

 

 

 

space line
我要留言 我要留言    
space line
space line
space line
space line
space line
space line