摘要: Access数据库操作一.创建表Create table 表名 //创建空表Create table 表名(字段1 字段类型,字段2 字段类型.........)二.现有表中增加字段alter table 表名 add column 字段名 字段类型create table InfoClass (ID AUTOINCREMENT,name VarChar(100),remark text(200),link text(200))三.修改字段类型alter table 表名 alter column 字段名 字段类型四.删除表drop table 表名五.删除字段alter table 表名.. 阅读全文
posted @ 2012-05-11 17:32 奎宇工作室 阅读(417) 评论(0) 推荐(0) 编辑