介绍 |
在未安装office的电脑上编辑access文件,可以执SQL语句 本软件是access修改工具,可以在没有安装access的电脑上运行,更改数据,可以用SQL语言进行高级数据维护 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 |