Hello,
I'm new myDBR user (and french by the way, so sorry for my english).
I'm trying to create a table from a request where, on each row I can figure the percentage from the total.
Exemple :
- 1. myDBR request :
SELECT c1
, COUNT(*) AS 'Nb', ??? AS '%' FROM T GROUP BY c1
- 2. myDBR result I want :
c1 Nb %
a 15 30.00%
b 25 50.00%
c 10 20.00%
How can I make it possible ?
Thank you for any answers...