Hello, I would like to know if it is possible to create a fourth line for mysql based on Titles that are repeated as in the first table where the game The Witcher® 3: Wild Hunt repeats 3 times and is generated on 4 lines based on second table?
<table>
<thead>
<tr>
<th>Título</th>
<th>Plataforma </th>
<th>Preço</th>
</tr>
</thead>
<tbody>
<tr>
<td>The Witcher 3: Wild Hunt</td>
<td>Pc</td>
<td>R$ 50</td>
</tr>
<tr>
<td>The Witcher 3: Wild Hunt</td>
<td>XOne</td>
<td>R$ 67</td>
</tr>
<tr>
<td>The Witcher 3: Wild Hunt</td>
<td>Ps4</td>
<td>R$ 80</td>
</tr>
</tbody>
</table>
<h1>Tabela de Exemplo abaixo</h1>
<table>
<thead>
<tr>
<th>Título</th>
<th>Plataforma </th>
<th>Preço</th>
</tr>
<tbody>
<tr>
<td>The Witcher 3: Wild Hunt</td>
<td>Pc/XOne/Ps4</td>
<td colspan="3" >R$ 50(PC) R$ 67(XOne) R$ 80(Ps4)</td>
</tr>
</thead>
</table>