[H] 2 Werte Auswählen

Noa1990

Benutzer
Beiträge
8
Hallo, ich hab diesmal ein kleines Problem und zwar...
PHP:
mysql> select * from pvp_table;
+-----------+-------------+--------------+------------+-------------+--------+
| player_id | player_name | player_poins | player_win | player_lose | empire |
+-----------+-------------+--------------+------------+-------------+--------+
|    57906 | [Q]xnoa    |        1000 |          0 |          0 |      3 |
|    58019 | Noa        |          500 |          0 |          0 |      1 |
+-----------+-------------+--------------+------------+-------------+--------+
2 rows in set
Code:
mysql> select player_poins+player_poins/2 AS ergebnis from account.pvp_table where player_name='[Q]xnoa' or player_name='Noa';
+-----------+
| ergebnis  |
+-----------+
| 1500.0000 |
| 750.0000  |
+-----------+
2 rows in set

Ich möchte hierbei den wert von [q]xnoa und Noa errechnet bekommen
da player_poins 1000=[q]xnoa ist und 500 =Noa
soll eine Differenz errechnet werden.
(1000+500)/2= ergebnis , doch die funktion zeigt mir 2 werte, das richtige Ergebnis muss ja 750 lauten und nicht 1500 und 750, kann mir jmd dabei helfen?

Mfg Noa
 
Werbung:
hab es herausgefunden danke dir
hier ist die lösung:
Code:
mysql> select avg(player_poins)
    -> from account.pvp_table
    -> where player_name='[Q]xnoa' or player_name='Noa';
+-------------------+
| avg(player_poins) |
+-------------------+
| 750.0000          |
+-------------------+
1 row in set
 
Werbung:
Zurück
Oben