@echo offecho drop table if exists test; > tmp.sqlecho create table test (id int, age int); >> tmp.sqlecho .separator ',' >> tmp.sqlecho .import csv.csv test >> tmp.sqlecho select * from test; >> tmp.sqlsqlite3.exe test.sqlite 0以上代码就测试无误