0
Hello I wonder if it is possible to create a fourth line for mysql based on the Titles that repeat as in the first table where the game The Witcher\1743: Wild Hunt repeats 3 times and is already generated to 4 line based on the 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>