Ciao a tutti, ho tre tabelle di questo tipo:

tabella A
id
id_utente
data_inserimento
altri_campi...

tabella B
id
id_utente
data_inserimento
altri_campi...


tabella C
id
id_utente
data_inserimento
altri_campi...


Come posso fare per fare una SELECT contemporanea sulle 3 tabelle, ordinando i dati per data (crescente o decrescente.. ) confrontando le date come se fossero in un unica tabella ?!

Codice PHP:
<?php
$id_utente 
1;

$sql ="
SELECT * FROM
tabella_a AS a,
tabella_b AS b,
tabella_c AS c
WHERE
a.id_utente='
$id_utente' AND b.id_utente='$id_utente' AND c.id_utente='$id_utente'
ORDER BY ... "
;
?>
Grazie a tutti per l'aiuto !