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

एक कॉलम (mysql) में कुल राशि मिलने तक पंक्तियों का चयन करें

यह सुंदर नहीं है, लेकिन मुझे लगता है कि यह ऐसा करता है और शायद यह कुछ कम बोझिल का आधार हो सकता है। ध्यान दें कि मैं पहली बार कुछ चर आरंभ करने के लिए "नकली" INNER JOIN का उपयोग करता हूं - यह कोई अन्य भूमिका नहीं निभाता है।

SELECT ID,
       supplier,
       qty,
       cumulative_qty
FROM
(
    SELECT
        ID,
        supplier,
        qty,
        -- next line keeps a running total quantity by supplier id
        @cumulative_quantity := if (@sup <> supplier, qty, @cumulative_quantity + qty) as cumulative_qty,
        -- next is 0 for running total < 5 by supplier, 1 the first time >= 5, and ++ after
        @reached_five := if (@cumulative_quantity < 5, 0, if (@sup <> supplier, 1, @reached_five + 1)) as reached_five,
        -- next takes note of changes in supplier being processed
        @sup := if(@sup <> supplier, supplier, @sup) as sup
    FROM
    (
        --this subquery is key for getting things in supplier order, by descending id
        SELECT *
        FROM `sample_table`
        ORDER BY supplier, ID DESC
     ) reverse_order_by_id
    INNER JOIN
    (
        -- initialize the variables used to their first ever values
        SELECT @cumulative_quantity := 0, @sup := 0, @reached_five := 0
    ) only_here_to_initialize_variables
) t_alias
where reached_five <= 1 -- only get things up through the time we first get to 5 or above.


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. क्या डेटा लोड करने के लिए .SQL फ़ाइल को निष्पादित करने का कोई लारवेल तरीका है?

  2. मैक ओएसएक्स पर मैसकल 5.6 सिरदर्द

  3. MySQLDumper:एक PHP और पर्ल आधारित MySQL डेटाबेस बैकअप टूल

  4. node.js mysql त्रुटि:ECONNREFUSED

  5. MySql दिनों में दो टाइमस्टैम्प के बीच अंतर?