sql >> Database >  >> RDS >> Mysql

MYSQL-query selecteren met telling (*)

Nu je verder hebt uitgewerkt wat je eigenlijk wilt bereiken, blijkt dat het probleem veel complexer is. U wilt eigenlijk alle combinaties van subscriber_id en tag_id en tel vervolgens het aantal werkelijke vermeldingen in het samengevoegde tabelproduct. oei. Dus hier komt de SQL:

SELECT combinations.tag_id,
       combinations.subscriber_id,

-- correlated subquery to count the actual hits by tag/subscriber when joining
-- the two tables using content_id

       (SELECT count(*)
        FROM content_hits AS h
        JOIN content_tag AS t ON h.content_id = t.content_id
        WHERE h.subscriber_id = combinations.subscriber_id
        AND t.tag_id = combinations.tag_id) as cnt

-- Create all combinations of tag/subscribers first, before counting anything
-- This will be necessary to have "zero-counts" for any combination of
-- tag/subscriber

FROM (
  SELECT DISTINCT tag_id, subscriber_id
  FROM content_tag
  CROSS JOIN content_hits
) AS combinations


  1. Database-uitzondering - Algemene fout:1021 Schijf vol

  2. Selecteer, waar JSON Array bevat

  3. Gebruik dezelfde parameter meerdere keren in WHERE-voorwaarden van een SQL-query voor gebruik in JDBC

  4. Top 50 MySQL-interviewvragen die u in 2022 moet voorbereiden