[Solved] Sql code to create the Mirror image of the string in Oracle sql [closed]


If “mirror” is reversed text use:

SELECT REVERSE('my_text') FROM dual;

EDIT:

SqlFiddleDemo

SELECT t
    ,REVERSE(t)  AS Mirror1
    ,TRANSLATE(t, 'abcdefghijklmnopqrstuvwxyz',N'ɐqɔpǝɟbɥıظʞןɯuodbɹsʇnʌʍxʎz') AS Mirror2
    ,TRANSLATE(REVERSE(t), 'abcdefghijklmnopqrstuvwxyz',N'ɐqɔpǝɟbɥıظʞןɯuodbɹsʇnʌʍxʎz') AS Mirror3
FROM tab;

enter image description here

2

solved Sql code to create the Mirror image of the string in Oracle sql [closed]