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

अंतिम x ब्लॉग प्रविष्टियाँ - लेकिन प्रति उपयोगकर्ता केवल एक बार

सबक्वेरी का उपयोग करना काम करने लगता है - इस छोटी सी चाल के साथ:

$options = array(
    'fields' => array('MAX(SubBlog.created)'),
    'conditions' => array('SubBlog.user_id = Blog.user_id')
);
$subquery = $this->subquery('all', $options);

$options = array(
    'order'=>array($this->alias.'.published' => 'DESC'),
    'conditions' => array(
        'User.active' => 1,
        'Blog.status' => self::STATUS_ACTIVE, 
        'Blog.published = ' . $subquery
    ),
    'contain' => array('User.username'),
    'fields' => array(
        'User.id',  'User.username', 
        'Blog.id', 'Blog.headline', 'Blog.published'
    ),
    'limit' => $limit,
);
return $this->find('all', $options);

सबक्वेरी () एक ऐपमॉडल विधि है:https://github .com/dereuromark/tools/blob/2.0/Lib/MyModel.php#L405



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. ActiveRecord/रेल बनाना वास्तविक mysql TIMESTAMP कॉलम का उपयोग करता है

  2. MySQLdb.cursor.execute एकाधिक प्रश्नों को नहीं चला सकता

  3. मैं mysql बाइनरी लॉग का उपयोग करके ड्रॉप डेटाबेस कमांड से कैसे पुनर्स्थापित करूं?

  4. TimeStamp विभाजन कुंजी पर स्पार्क JoinWithCassandraTable STUCK

  5. इसे एन्क्रिप्ट किए बिना एपीआई के लिए सुरक्षित रूप से पासवर्ड संग्रहीत करना