I encountered an SQL query for generating alphabetically spelled character strings for corresponding numeric values, i.e. say, if we want to convert the numeric values of the sal column of emp table to corresponding character strings, then we can apply the following query: select to_char ( to_date (sal , ' j ') , ' jsp ' ) from emp ; The problem is that I cannot find an appropriate logical explanation of this query....So, I need your help.