15 lines
386 B
Plaintext
15 lines
386 B
Plaintext
SQL-Abfragen:
|
|
|
|
Highscores:
|
|
SELECT * FROM happybirddb ORDER BY punkte DESC LIMIT 5;
|
|
Dann Ausgabe auf dem Bildschirm
|
|
|
|
Einfügen in die DB:
|
|
INSERT INTO HappyBirdDB (name, kuerzel, punkte) VALUES ('playername', 'playerkuerzel', points);
|
|
//playername, playerkuerzel, points sind Variablen
|
|
|
|
|
|
Maximale Punkte des Spielers:
|
|
SELECT MAX(punkte) FROM happybirddb WHERE kuerzel = 'playerkuerzel';
|
|
|