I have rows, and I want count my select with criteria IN and want to count rows, which is having same values for all rows
Example:
IN array
Same fields:
I want to see RESULTS LIKE
Result SELECT:
Result SELECT COUNT(*):
Example:
id name lastname age
1 Abc defghij 12
2 Def asdasd 15
3 Ghi qwewqeq 18
4 Abc zzzzz 12
5 Abc yyy 12
6 Abc uuuu 12
IN array
1, 4, 5, 6
Same fields:
`name`, `age`
I want to see RESULTS LIKE
Result SELECT:
id name lastname age
1 Abc defghij 12
4 Abc zzzzz 12
5 Abc yyy 12
Result SELECT COUNT(*):
Read more
3