oracle怎么切分字符串并一一輸出?
單個語句無法實現(xiàn) 可以寫個PLSQL塊來實現(xiàn) declare s char(10); i int; begin s:='123456' ; for i in 1..length(trim(s)) loop dbms_output.put_line( substr(s,i,1) ); end loop ; end;
oracle怎么切分字符串并一一輸出?
單個語句無法實現(xiàn) 可以寫個PLSQL塊來實現(xiàn) declare s char(10); i int; begin s:='123456' ; for i in 1..length(trim(s)) loop dbms_output.put_line( substr(s,i,1) ); end loop ; end;