您的位置首页百科问答

solidDB如何实现表数据导出

solidDB如何实现表数据导出

的有关信息介绍如下:

solidDB如何实现表数据导出

请参考:全表导出:solexp "tcp 2315" username password TABLE_NAME条件导出: solexp -e"select c1, c2, c3 from TABLE_NAME where c1 = xxx and c2 = yyy" "tcp 2315" username password TABLE_NAME另外,可用solsql执行查询语句,结果从定向到文件的方法代替,如: solsql -e "select c1, c2, c3 from test_table where c1 = xxx and c2 = yyy" "tcp 2315" username password >> xxxxxx.log