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

MySQL aggregerede funktioner med LEFT JOIN

Da du har filteret til notes tabellen i WHERE klausulen JOIN fungerer som en INNER JOIN , flyt den til JOIN tilstand:

SELECT
  jobs.*,
  MAX(notes.`timestamp`) AS complete_date
FROM jobs
LEFT JOIN notes 
  ON (jobs.id=notes.job_id)
  AND (notes.type="complete" OR notes.type IS NULL)
WHERE (jobs.status="complete" OR jobs.status="closed")
GROUP BY jobs.id
ORDER BY complete_date ASC;

Dette kan også gøres ved hjælp af en underforespørgsel, så du anvender notefilteret inde i underforespørgslen:

SELECT
  jobs.*,
  n.complete_date
FROM jobs
LEFT JOIN
(
    select job_id, MAX(`timestamp`) AS complete_date
    from notes 
    where (type="complete" OR type IS NULL)
    group by job_id
) n
  ON (jobs.id=n.job_id)
WHERE (jobs.status="complete" OR jobs.status="closed")
ORDER BY complete_date ASC



  1. Flere tæller med forskellige betingelser i en enkelt MySQL-forespørgsel

  2. MySQL IF ELSEIF i udvalgt forespørgsel

  3. SQL CASE-erklæring

  4. Caching med PHP for at fjerne stress fra MySQL