Comprendo che è possibile specificare -> distinct () sull'istruzione db_select in modo che restituisca valori distinti solo quando si guardano TUTTI i campi. Ma quello che voglio è restituire valori distinti guardando solo UN campo. Ecco il mio codice:
$event_table = db_select('my_table', 'e')
->distinct()
->orderBy('e.time', 'ASC');//ORDER BY
$event_table->join('node', 'n', 'e.nid = n.nid'); //JOIN node with events
$event_table->groupBy('e.time');//GROUP BY time
$event_table->fields('e')//SELECT the fields from events
->fields('n',array('type','status','title'))//SELECT the fields from node
->orderBy('e.time', 'ASC');//ORDER BY
$result_event_table = $event_table->execute();
$result_event_table = $result_event_table->fetchAllAssoc('time');
Supponiamo che io voglia che la colonna distinta sia e.nid. Penseresti che -> distinguibile ('e.nid') funzionerebbe ma restituisce comunque valori distinti in base a tutti i campi (ovvero distinti (colonne1, colonna2, colonna3, ecc.).
db_select
a fare lo stesso