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

यूनियन mysql के साथ समूह द्वारा क्वेरी का चयन करें

select sum(qty), name
from (
    select count(m.owner_id) as qty, o.name
    from transport t,owner o,motorbike m
    where t.type='motobike' and o.owner_id=m.owner_id
        and t.type_id=m.motorbike_id
    group by m.owner_id

    union all

    select count(c.owner_id) as qty, o.name,
    from transport t,owner o,car c
    where t.type='car' and o.owner_id=c.owner_id and t.type_id=c.car_id
    group by c.owner_id
) t
group by name


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL में SELECT INTO OUTFILE का उपयोग करना

  2. MySql को हटाने से पहले ट्रिगर करें

  3. डेटाबेस को छोड़े बिना डेटाबेस में सभी तालिकाओं को कैसे छोड़ें?

  4. कैसे एक mysql परिणाम से पहली और अंतिम डेटा पंक्ति का चयन करने के लिए?

  5. PHP, SQL सीमा क्वेरी php चर द्वारा