Visualizzazione dei risultati da 1 a 4 su 4
  1. #1

    aiuto select e /o struttura tabelle

    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 !
    aquatimer2000

  2. #2
    ok perfetto grazie!
    faccio delle prove poi domani posto i risultati!
    grazie!!
    aquatimer2000

  3. #3
    risolto come indicato con UNION

    esempio per chi legge se può tornar utile:
    Ultima modifica di aquatimer2000; 03-07-2017 a 09:29

  4. #4
    Codice PHP:
    //...

    $sql "
    SELECT * FROM
    (SELECT idd, oggetto, dins FROM tab_a
    UNION
    SELECT id, oggetto, dins FROM tab_b) AS tab
    WHERE tab.oggetto LIKE '%1%'
    ORDER BY tab.dins DESC
    "
    ;
    //... 
    aquatimer2000

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.