sql >> Database >  >> RDS >> Mysql

SQL:UPDATE van een complexe selectie

UPDATE table1 
SET skipbill = 1 
WHERE sqlid IN (
    SELECT DISTINCT t.sqlid 
    FROM (
        SELECT t.*, (@cume := @cume + billsec) AS cume 
        FROM table1 t 
        CROSS JOIN (SELECT @cume := 0) vars 
        ORDER BY calldate
    ) t, table2 sct 
    WHERE t.cume <= sct.bonus_seconds 
          AND t.customer_id = sct.customer_id
);


  1. MySQL:SQL-fout:1140, SQLState:42000

  2. MySQL regexp op indexen

  3. Hoe voeg je een <br/> toe na elk resultaat, maar niet het laatste resultaat?

  4. Migratie van SQL Server 2008 R2 naar MySQL