国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

SQL Count() also requires 0
P粉547362845
P粉547362845 2024-04-06 19:48:53
0
1
1078

I only have one table and I want to count each entry of a tag starting from 0

Now I try this:

SELECT label, COUNT(start) AS Anzahl, user_id FROM datensammlung where (start='1') AND (user_id='1') GROUP BY label;

But the reward is only:

Label quantity User ID
1_Eating Spoon 20 1
1_Blow your nose 20 1

But I want this:

Label quantity User ID
1_Eating Spoon 20 1
1_Blow your nose 20 1
1_Telephone 0 1

P粉547362845
P粉547362845

reply all(1)
P粉668113768

If all label are available in the table, you can use conditional aggregation:

SELECT label, 
       SUM(user_id = '1' AND start = '1') AS Anzahl 
FROM datensammlung 
GROUP BY label;
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template