Answers for "my sql comma separated column code"

SQL
0

fetcht he leftmost word in a comma separated string in sql

SELECT SUBSTRING_INDEX(address, ',', 4) FROM employees;
+-----------+------------------------------------+
| name      | SUBSTRING_INDEX(address, ',', 4)   |
+-----------+------------------------------------+
| John Doe  | 4225 Collins Street,Apt. A,Erie,PA |
| Bob Smith | 234 Main Street,,Erie,PA           |
+-----------+------------------------------------+
Posted by: Guest on September-11-2020

Code answers related to "my sql comma separated column code"

Code answers related to "SQL"

Browse Popular Code Answers by Language