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

समस्या के आधार पर SQL क्वेरी समूह कैसे चलाएं?

दो उप-प्रश्न करें और उनसे जुड़ें।

SELECT counts.dest_name, 
       counts.dest_reference_id,
       counts.total_format,
       idents.format,
       idents.IG
FROM
(
  select dest_name, dest_reference_id, count (format) as total_format
  from IdentityTable
  Group By dest_name, dest_reference_id;
) counts
join
(
  select distinct dest_name, dest_reference_id, format, IG
  from identitytable 
) idents
on    counts.dest_name = idents.dest_name
  and counts.dest_reference_id = idents.dest_reference_id


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. SQLPlus AUTO_INCREMENT त्रुटि

  2. केवल TOAD में निष्पादित का उपयोग करके एकाधिक sql कथन चलाएँ

  3. जब मैं एक दिनांक कॉलम के लिए java.sql.Timestamp पास करता हूं तो Oracle इतना धीमा क्यों होता है?

  4. अस्थायी तालिका को भरने के लिए कुशल दृष्टिकोण

  5. ऑरेकल में अनपिवट ऑन व्यू काम नहीं कर रहा है