Can I get the count results for particular field from table. for example im using this query,
select id,retailer,email from tab
i got the result set,
1 ret1 [email protected]
2 ret2 [email protected]
3 ret3 [email protected]
4 ret1 [email protected]
5 ret2 [email protected]
6 ret6 [email protected]
What I need is count of ([email protected]) as 3 times like wise. thanks.