0

I am trying to implement splitting of a column into rows based upon a delimiter and I came across this.

Turning a Comma Separated string into individual rows

It describes a solution using SQL. Can anyone suggest a MySQL equivalent of this solution?

3
  • Either a) describe what the STUFF function actually does or b) ask the actual question for the problem you have (which appears to be splitting CSV data into separate rows) - who cares what function is used to solve it? Commented Oct 25, 2016 at 6:29
  • You don't need the stuff function or a mysql equivalent (it doesn't do what you need). You can use the function from MYSQL - Array data type, split string to split up your array for the solution of your link. Commented Oct 25, 2016 at 6:58
  • Possible duplicate of SQL split values to multiple rows Commented Nov 30, 2017 at 14:44

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.