sql >> Database >  >> RDS >> Mysql

De Max- en Min-records selecteren in één MySQL-opdracht

SELECT MIN(id), MAX(id) FROM tabla

BEWERKEN: Als u de waarden van de rij moet ophalen, kunt u dit doen:

SELECT *
FROM   TABLA AS a, (SELECT MIN(id) AS mini,
                            MAX(id) AS maxi
                     FROM   TABLA) AS m
WHERE  m.maxi = a.id
       OR m.mini = a.id;


  1. wat zijn de veranderingen in mysql 8 resultaat rowset case?

  2. Gegevens invoegen om op te nemen in sqlite

  3. Is mysqli_real_escape_string voldoende om SQL-injectie of andere SQL-aanvallen te voorkomen?

  4. Python MySQL escape speciale tekens