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

एकाधिक स्तंभों (PSQL) द्वारा समूहीकृत पंक्तियों के समूहों से अधिकतम मान वाली पंक्तियों का चयन करें

select distinct on ("date", location_code, product_code, type)
    "date",
    location_code,
    product_code,
    quantity,
    type,
    updated_at
from transactions t
order by t."date", t.location_code, t.product_code, t.type, t.updated_at desc


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. क्या मुझे नवीनीकृत डेटा मॉडल में hstore का उपयोग करना चाहिए?

  2. PostgreSQL में एक तिथि में वर्ष जोड़ें

  3. PostgreSQL में डेटाबेस ट्रिगर का निष्पादन संदर्भ

  4. PostgreSQL कमांड लाइन उपयोगिता से कैसे बाहर निकलें:psql

  5. sqlalchemy.exc.DataError को कैसे ठीक करें:(psycopg2.errors.StringDataRightTruncation)?