简体   繁体   中英

How do i import a xls file data into sqlite3

I am having data in a excel sheet, It is large data i want to import all the data in excel to sqlite3, I am using this data for iPhone.

Thanks

  1. Export the Excel file to CSV format
  2. Use the .import command:

     .separator "," .import excel_export.csv your_table 

Reference:

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM