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

कोडनिर्देशक क्वेरी के साथ कॉलम का योग कैसे प्राप्त करें?

आप select_sum() . का उपयोग कर सकते हैं कोडनिर्देशक का कार्य। निम्नलिखित कोड आज़माएं-

$query = $this->db->select_sum("tb1.amount")
                  ->from("table1 as tb1")
                  ->join("table2 as tb2","tb1.id = tb2.id") 
                  ->where("tb2.status",1)
                  ->get();
$query = $query->result();

या

$query = $this->db->query('SELECT sum(tb1.amount) FROM table1 as tb1 join table2 as tb2 on tb1.id = tb2.id where tb1.status = 1'); $query = $query->result_array();



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. मैसकल डेटटाइम समूह 15 मिनट तक

  2. MySQL:आप खंड से अद्यतन के लिए लक्ष्य तालिका 'कार्य' निर्दिष्ट नहीं कर सकते हैं

  3. MySQL में संपूर्ण शब्द मिलान खोजें

  4. BIGINT UNSIGNED मान सीमा से बाहर है

  5. PHP से MySQL एसएसएल कनेक्शन