·在你的**中增加一列,利用excel的公式自動生成sql語句,具體方法如下:
1)增加一列(假設是d列)
2)在第一行的d列,就是d1中輸入公式:
=concatenate("insert into tablename (col1,col2,col3) values (",a1,",",b1,",",c1,");")
3)此時d1已經生成了如下的sql語句:
insert into table (col1,col2,col3) values ('a','11','33');
4)將d1的公式複製到所有行的d列(就是用滑鼠點住d1單元格的右下角一直拖拽下去啦)
5)此時d列已經生成了所有的sql語句
6)把d列複製到乙個純文字檔案中,假設為sql.txt
·把sql.txt放到資料庫中執行即可,你可以用命令列匯入,也可以用phpadmin執行。
mysql將資料匯入到excel中
先建立一張測試的資料表 create table users username varchar 40 not null,password varchar 40 not null charset utf8 插入資料 insertinto users values admin admin inserti...
將Excel資料匯入到SQL Server資料庫中
1 接受資料匯入的表已經存在。insert into t1 select from openrowset microsoft.jet.oledb.4.0 excel 5.0 hdr yes database c test.xls sheet1 2 匯入資料並生成表。select into t1 fr...
將Excel資料匯入到SQL Server資料庫中
這個方法是到目前為止我見到最好的方法,還有幾個要注意的問題也在下面提到了哦!其中還涉及到要注意到地方都在下面累出來了 1 接受資料匯入的表已經存在。insert into t1 select from openrowset microsoft.jet.oledb.4.0 excel 5.0 hdr ...