本軟件是access修改工具,可以在沒有安裝access的電腦上運行,更改數(shù)據(jù),可以用SQL語言進行高級數(shù)據(jù)維護
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