SQL Statement combining LTRIM(REPLACE(substr & INSTR

85 Views Asked by At

I'm obviously new to SQL and trying to understand what these two statements below are doing. Any help would be greatly appreciated.

Statement 1

LTRIM(REPLACE(substr(full_name, INSTR (full_name,','), length(full_name)),','))

Statement 2

REPLACE(RPAD(FULL_NAME, INSTR (full_name,',')),',','') "Name"
0

There are 0 best solutions below