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