Answers for "mysql get 2nd value in comma separated list"

SQL
0

mysql get 2nd value in comma separated list

select  SUBSTRING_INDEX(SUBSTRING_INDEX(field_name,',',2),",",-1)  from table_name
Posted by: Guest on December-10-2021

Code answers related to "mysql get 2nd value in comma separated list"

Code answers related to "SQL"

Browse Popular Code Answers by Language