wiki:wade/sqlite
close Warning: Can't synchronize with repository "(default)" (Unsupported version control system "svn": /usr/lib/python2.7/dist-packages/libsvn/_core.so: failed to map segment from shared object: Cannot allocate memory). Look in the Trac log for more information.

Version 1 (modified by wade, 15 years ago) (diff)

--

note

  • sqlite 3 轉 CSV。
    sqlite [your filename]
    
    // 輸出標頭
    .header ON 
    
    // 輸出 csv
    .mode csv 
    
    // 以 tab \t 做為分隔符號
    .separator "\t" 
    
    // 將結果輸出到 test.csv
    .output test.csv 
    
    // 產生搜尋結果並輸出到 test.csv 內
    select * from [table_name]
    

Reference