hallo zusammen,
hab arge probs mit mysql und der prozentrechnung:
ich habe eine tabelle (test) mit einer spalte (browser). einträge der spalte msie5, msie6,opera,opera
nun möchte ich ausgeben wie oft ein browser genutzt wurde, noch relativ einfach:
SELECT distinct browser, COUNT(browser) AS anzahl FROM test GROUP BY browser;
+---------+--------+
| browser | anzahl |
+---------+--------+
| MSIE 5 | 1 |
| MSIE 6 | 1 |
| Opera | 2 |
+---------+--------+
aber wie brkomme ich die entsprechenden prozentangaben dahinter?
SELECT distinct browser, COUNT(browser) AS anzahl, ((xyz/xyz_gesamt)*100) AS prozent FROM test GROUP BY browser;
+-----------+---------+---------------
| browser | anzahl | prozent
+-----------+---------+------------------
| MSIE 5 | 1 | ? (25%)
| MSIE 6 | 1 | ? (25%)
| Opera | 2 | ? (50%)
+-----------+----------+
vielen dank schon mal
norman
hab arge probs mit mysql und der prozentrechnung:
ich habe eine tabelle (test) mit einer spalte (browser). einträge der spalte msie5, msie6,opera,opera
nun möchte ich ausgeben wie oft ein browser genutzt wurde, noch relativ einfach:
SELECT distinct browser, COUNT(browser) AS anzahl FROM test GROUP BY browser;
+---------+--------+
| browser | anzahl |
+---------+--------+
| MSIE 5 | 1 |
| MSIE 6 | 1 |
| Opera | 2 |
+---------+--------+
aber wie brkomme ich die entsprechenden prozentangaben dahinter?
SELECT distinct browser, COUNT(browser) AS anzahl, ((xyz/xyz_gesamt)*100) AS prozent FROM test GROUP BY browser;
+-----------+---------+---------------
| browser | anzahl | prozent
+-----------+---------+------------------
| MSIE 5 | 1 | ? (25%)
| MSIE 6 | 1 | ? (25%)
| Opera | 2 | ? (50%)
+-----------+----------+
vielen dank schon mal
norman
Kommentar