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

VÆLG alle de nyeste poster distinkte nøgleord med en ikke-nul værdi i én kolonne

Brug:

SELECT t.id,
       t.keyword,
       t.count,
       t.date
  FROM TABLE t
  JOIN (SELECT t.keyword,
               MAX(t.date) 'max_date'
          FROM TABLE t
         WHERE t.count IS NOT NULL
      GROUP BY t.keyword) x ON x.keyword = t.keyword
                           AND x.max_date = t.date



  1. Hvordan genererer man automatisk et unikt id i SQL som UID12345678?

  2. Læsbare sekundærer på et budget

  3. Sender ClientInfo/ClientIdentifier på syscontext/forbindelse med Hibernate til revisionsformål

  4. Fillagring til webapplikationer:Filsystem vs DB vs NoSQL-motorer