sql >> Database >  >> RDS >> Mysql

Krijg alle acties van de laatste drie gebruikers

Uitgaande van ID is een AUTO_INCREMENT kolom,

SELECT  a.user_ID, a.action
FROM    tableName a
        INNER JOIN
        (
            SELECT  DISTINCT user_ID
            FROM    tableName   
            ORDER   BY ID DESC
            LIMIT   3
        ) b ON user_ID = b.user_ID



  1. DE clausule Trefwoord versus ON GEBRUIKEN - MYSQL

  2. postgreSQL mysql orakel verschillen

  3. GEBRUIKER Functie in Oracle

  4. #1055 - Expressie van de SELECT-lijst staat niet in de GROUP BY-clausule en bevat een niet-geaggregeerde kolom. Dit is niet compatibel met sql_mode=only_full_group_by