PostgreSQL
 sql >> डेटाबेस >  >> RDS >> PostgreSQL

Node Sequelize में उत्सुक-लोडेड नेस्टेड मॉडल के परिणाम का आदेश देना

मुझे विश्वास है कि आप यह कर सकते हैं:

db.Page.findAll({
  include: [{
    model: db.Gallery
    include: [{
      model: db.Artwork
    }]
  }],
  order: [
    // sort by the 'order' column in Gallery model, in descending order.

    [ db.Gallery, 'order', 'DESC' ], 


    // then sort by the 'order' column in the nested Artwork model in a descending order.
    // you need to specify the nested model's parent first.
    // in this case, the parent model is Gallery, and the nested model is Artwork

    [ db.Gallery, db.ArtWork, 'order', 'DESC' ]
  ]
})

ऑर्डर करते समय आप विभिन्न तरीकों या चीजों का एक समूह भी कर सकते हैं। यहां और पढ़ें:https://sequelize.org/master/manual/model-querying-basics.html#ordering-and-grouping



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Postgresql में एक विशिष्ट कॉलम वाली तालिका कैसे खोजें?

  2. एसक्यूएल:उन रिकॉर्ड्स का चयन करें जहां सभी जुड़े हुए रिकॉर्ड कुछ शर्तों को पूरा करते हैं

  3. मेरी पसंदीदा पोस्टग्रेएसक्यूएल क्वेरीज़ और वे क्यों मायने रखती हैं

  4. PostgreSQL में डेटाबेस_नाम कमांड का उपयोग करें

  5. पोस्टग्रेएसक्यूएल का बैकअप लेने के लिए बर्मन का उपयोग करना - एक सिंहावलोकन