Mysql
 sql >> Baza danych >  >> RDS >> Mysql

MySQL GROUP &COUNT Wiele tabel

Problem 1:

SELECT tag_id, tag_name, count(*)
FROM (
  SELECT tag_id, tag_name FROM tags
  UNION ALL
  SELECT tag_id, tag_name FROM more_tags
) s
GROUP BY tag_id, tag_name

Problem 2:

SELECT tag_id, tag_name, 'not present in more tags' as description
FROM tags LEFT JOIN more_tags ON tags.tag_id=more_tags.tag_id
WHERE more_tags.tag_id IS NULL
UNION ALL
SELECT tag_id, tag_name, 'not present in tags' as description
FROM tags RIGHT JOIN more_tags ON tags.tag_id=more_tags.tag_id
WHERE tags.tag_id IS NULL

Problem 3:

SELECT tag_id, tag_name, COUNT(*)
FROM tags INNER JOIN more_tags ON tags.tag_id=more_tags.tag_id
GROUP BY tag_id, tag_name


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Łącznik MySQL w języku Python — znaleziono nieprzeczytane wyniki podczas używania fetchone

  2. Mysql Wybierz różne rekordy tylko z ostatnich dat

  3. Jak zaktualizować tabelę przestawną za pomocą Eloquent w laravel 5

  4. Wstaw tablicę do bazy danych MySQL za pomocą PHP

  5. Automatycznie twórz kopię zapasową bazy danych MySQL na serwerze linux