Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

MySQL pilih gabung di mana DAN di mana

Jenis masalah ini dikenal sebagai divisi relasional

SELECT Products.* 
FROM Products
JOIN ProductTags ON Products.id = ProductTags.product_id
WHERE ProductTags.tag_id IN (1,2,3)
GROUP BY Products.id /*<--This is OK in MySQL other RDBMSs 
                          would want the whole SELECT list*/

HAVING COUNT(DISTINCT ProductTags.tag_id) = 3 /*Assuming that there is a unique
                                              constraint on product_id,tag_id you 
                                              don't need the DISTINCT*/


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. PHP:mysql v mysqli v pdo

  2. JSON_ARRAY_INSERT() – Masukkan Nilai ke dalam Array JSON di MySQL

  3. Menggunakan Suka Di MySQL untuk Operasi Pencarian Menggunakan Pola

  4. KESALAHAN:Koneksi dalam mode autoCommit

  5. File mysql mysql.h tidak ditemukan di VS2008 C++ <Pertanyaan Pemula>