There is no count(*) or group by selector in JCR SQL , XPath [2] or JCR-SQL2/AQM [3].
So you can't do it with SQL2 query but you can run query like below to find all the nodes with 'en' and then again query each node to check duplicate value using Node API
example -
SELECT * FROM [nt:base] AS s WHERE ISDESCENDANTNODE([/content/AEM63App/fr]) and CONTAINS(s.language, 'en')
Arun Patidar