I need to set up a SQL to group information by month into columns formatted by Bootstrap. Come on:
<div class="container">
<div class="row">
<div class="col-md-3">
<h2 class="eventos_mes">Maio</h2>
<p>Primeiro Evento Título</p>
<p>Segundo Evento Título</p>
<p>Terceiro Evento Título</p>
<p>Quarto Evento Título</p>
</div>
<div class="col-md-3">
<h2 class="eventos_mes">Junho</h2>
<p>Primeiro Evento Título</p>
<p>Segundo Evento Título</p>
<p>Terceiro Evento Título</p>
<p>Quarto Evento Título</p>
</div>
<div class="col-md-3">
<h2 class="eventos_mes">Julho</h2>
<p>Primeiro Evento Título</p>
<p>Segundo Evento Título</p>
<p>Terceiro Evento Título</p>
<p>Quarto Evento Título</p>
</div>
etc ...
</div>
</div>
I do not know how I could put together a SQL that would group these events by month separating them with Bootstrap formatting by columns.
For this example, consider that there are only three columns:
- ID
- Title
- Date (mysql format)
Thank you