I, use the following sql statement:
SELECT group_concat(name SEPARATOR '') FROM words WHERE id in (1,2,3,1,2)
The problem at this statement is, that only names from 1,2,3 will concatenated but I need the name concatenation from 1,2,3,1,2 in exact that order.
So I will allow duplicated values, how can I do that?
Assuming is the id column non unique? If so and there are multiple rows what you have would work.
Specifying an identifier in a where in list multiple times will not include matches for each specification. Further, as you see in my example specifying each one time still results in each match from the insert to be returned.
UPDATE After clarification:
If your id column is uninque you aren't going to get multiple copies of the rows to be returned with a simple query like that. doing a UNION ALL
Representing each set of duplicates uniquely will work