实用的access工具,可以在没有安装office的电脑上编辑和更改access数据库文件的数据,还可以用SQL语言进行高级数据维护
一、复制表
select * into newtable from oldtable
select * into b from a where 1<>1 只复制结构
二、从一个表导入到另一个表
insert into a select * from b
三、更新表
update yourtable set name='难得糊涂' where city='南阳'
四、删除表
drop table yourtable