如何將單個SELECT sql語句的EACH行結果後臺處理爲不同的輸出文件? 舉例來說,如果我有數據庫結果輸出假脫機
SELECT * FROM myTable WHERE columnId < 45;
while (rs.next()) {
result of row1 goes to row1.txt;
result of row2 goes to row2.txt;
result of row3 goes to row3.txt;
result of row4 goes to row4.txt;
}
你正在使用哪些DBMS?你有什麼編程語言可用? – gvee
正在使用oracle數據庫,並且正在使用Java編程 –