Originariamente inviato da aquatimer2000
ciao a tutti, ho queste tre tabelle:

*************
tabella "utente"
id_utente
nome
*************

****************
tabella "particella"
id_particella
fg
particella
****************

****************************
tabella "unione_utente_particella"
id
id_utente
id_particella
****************************
Codice PHP:
SELECT FROM
 utente 
as UT,
 
unione_utente_particella UP,
 
particella as PA
WHERE
 UT
.id_utente 1
and
 
UT.id_utente UP.id_utente
and
 
UP.id_particella PA.id_particella