我使用連接函數從兩個表'逗留'和'寵物'表中引入數據。我想知道如何計算返回數據中發生的次數'貓'。使用mysql中的連接函數計算特定數據的次數
SELECT pet.petID, pet.species
from stay
inner join pet
on (stay.petID = pet.petID)
petID Species
8 Cat
8 Cat
8 Cat
9 Cat
11 Cat
12 Cat
12 Cat
14 Cat
39 Dog
39 Dog
40 Dog
41 Dog
如果加上'WHERE品種=「cat''到您的查詢的末尾,則答案將與返回的行數相同。 – Strawberry
查看MySQL的count()函數 – Shadow