sql >> データベース >  >> RDS >> Oracle

文字列内の各文字を行に変換します

    with temp as (select '12456' as str from dual)
    select substr(str,level,1)
    from temp
    connect by level <= length(str);
    

    結果:

    1
    2
    4
    5
    6
    



    1. PostgresPlus AdvanceServer9.1を使用したPL/プロキシのコンパイル

    2. カウント中、oraclesqlはgroupby式ではありません

    3. 不良RACノードを再作成する

    4. ユーザーIDをPostgreSQLトリガーに渡す