I have this table in MySQL:
+-------------------------------+
| *UDH* | *Text* |
--------------------------------
| 050003B90301 | Hola soy A |
--------------------------------
| 050003B90302 | rmin y quier |
--------------------------------
| 050003B90303 | o ser amigo tuy|
--------------------------------
| 050003310201 | Me llamo Ana y |
--------------------------------
| 050003310202 | soy modelo prof|
+-------------------------------+
As you can see, the data in the UDH column is the same as in the last character, and I need to join the Text field to one, something like this:
+-----------------------------------------------+
| *UDH* | *Text* |
-------------------------------------------------
| 1 | Hola soy Armin y quiero ser amigo tuy |
-------------------------------------------------
| 2 | Me llamo Ana y soy modelo prof |
+-----------------------------------------------+
I have dealt with the sentence: group_concat () of MySQL but I have not succeeded ... Any suggestions?