Mysql
 sql >> Database >  >> RDS >> Mysql

Come ottenere dati da un'altra tabella utilizzando i dati di una colonna da una tabella diversa?

Dovresti creare un modello come questo

api/models/Email.js

attributes: {
    email : {
        type: 'email',
        unique: true
    },
    owner : {
        model:'user',  //here put your model name 
        unique: true   //put unique here because it's one by one association
   }
}

api/models/User.js

attributes: {
   username : {
     type: 'string',
     unique: true
   },
   userEmail : {
      collection:'email', //here is also model name
      via: 'owner'
   }
}

Allora

Ottieni utente dall'e-mail

Email.find().populate('owner')

Ricevi email dall'utente

User.find().populate('userEmail')

Ora puoi accedere ai tuoi dati entrambi dai tuoi due modelli.

Prova a stampare due comandi sopra, vedrai che i tuoi dati contengono i dati della tabella correlata.

Email.find().populate('owner').exec(function(err, records) {
    res.json(records)
});

Questa è la mia risposta.

[
    {
        "owner": {
            "username": "test",
            "id": 1,
            "createdAt": "2016-11-23T13:45:06.000Z",
            "updatedAt": "2016-11-23T13:45:06.000Z"
        },
        "email": "[email protected]",
        "id": 1,
        "createdAt": "2016-11-23T13:45:06.000Z",
        "updatedAt": "2016-11-23T13:45:06.000Z"
    }
]

Ulteriori informazioni:http://sailsjs.com/ documentazione/concetti/modelli-e-orm/associazioni/uno-a-uno