access工具是一款非常实用的工具,可以通过该软件使用SQL语言进行数据维护,同时这也是一个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