Oracle
 sql >> Base de données >  >> RDS >> Oracle

Inverser la chaîne mot par mot en utilisant SQL

Version basée sur XML pour éviter de définir votre propre fonction ; nécessite 11g pour listagg() :

select listagg(word, ' ') within group (order by rn desc) as reversed
from (
  select word, rownum as rn
  from xmltable('for $i in ora:tokenize($STR, " ") return $i'
    passing 'Hello World! I Love StackOverflow' as str
    columns word varchar2(4000) path '.'
  )
);

REVERSED                               
----------------------------------------
StackOverflow Love I World! Hello        

Le XMLTable() effectue la tokenisation et attribue un numéro de ligne :

select rownum as rn, word
from xmltable('for $i in ora:tokenize($STR, " ") return $i'
  passing 'Hello World! I Love StackOverflow' as str
  columns word varchar2(4000) path '.'
);

        RN WORD               
---------- --------------------
         1 Hello                
         2 World!               
         3 I                    
         4 Love                 
         5 StackOverflow        

Le listagg() puis reconstituez-le dans l'ordre inverse.