sql >> Database teknologi >  >> RDS >> Mysql

SQL:OPDATERING med INNER JOIN med LIMIT

Det kan du bare ikke.

Ifølge MySQL-dokumenter til OPDATERING :

For the multiple-table syntax, UPDATE updates rows in each table named in
table_references that satisfy the conditions. In this case, ORDER BY and LIMIT
cannot be used. 

OPDATERING 1

UPDATE  table1 a
        INNER JOIN
        (
            SELECT  id 
            FROM    table1 A
                    INNER JOIN table2 B 
                        ON A.type = B.typeName
            WHERE   A.status IN ('Finished', 'Exception', 'Query') AND 
                    A.date BETWEEN '2013-01-01' AND '2013-01-31' AND 
                    A.code IN ('ex1','ex2','ex3') AND 
                    A.closed = 0 AND 
                    B.order = 'Non-Order' AND 
                    A.userName = 'test' 
            LIMIT   3
        ) tmp ON a.ID = tmp.ID
SET     a.closed = 1, 
        a.sample = 1


  1. PHP mysql_stmt::fetch() giver PHP fatal fejlhukommelse opbrugt

  2. Oracle.DataAccess.dll kan ikke findes, selvom det eksisterer

  3. SQL Server Backup Check

  4. MySql :Bestil efter og gruppe Ved at kombinere ikke at give den seneste rekord