SELECT 'a, b, c, d,' test From dual;
The output is:
a, b, c, d,
To clean the last comma we can use RTRIM
SELECT RTRIM('a, b, c, d,', ',') new_test From dual;
The output is:
a, b, c, d
Pretty neat!!!!
RTRIM function
Source 2
SELECT 'a, b, c, d,' test From dual;
The output is:
a, b, c, d,
To clean the last comma we can use RTRIM
SELECT RTRIM('a, b, c, d,', ',') new_test From dual;
The output is:
a, b, c, d
Pretty neat!!!!
RTRIM function
Source 2
Connection failed. Verify all connection parameters and confirm that the appropriate driver is installed.
Listener refused the connection with the following error:
ORA-12505, TNS:listener does not currently know of SID given in connect descriptor