Good morning
I have this query
$eventos_history_query = tep_db_query("select * from " .
TABLE_HISTORIAL . " where numero_evento = '" .
$customers['numero_evento'] . "' order by eventos");
while ($eventos_history = tep_db_fetch_array($eventos_history_query))
{
in a TABLE_HISTORIAL and there are repeated values in the notes table,
In this example we see that note1 is repeated 3 times:
I just want to show the first note1 as long as it is different from the other examples:
desired result:
How do I perform the query so that note1 of event2 and event3 disappear since it is repeated in event1? only at the inquiry level on the screen