demgirlz/README.md

12 lines
271 B
Markdown
Raw Permalink Normal View History

2021-05-23 16:55:57 +02:00
Populate player name (from most used one) after database is fully populated:
```SQL
UPDATE `player` SET `name`=(
SELECT `name`
FROM `player_names`
WHERE `player_names`.guid = `player`.guid
GROUP BY guid, name
ORDER BY MAX(`time`) DESC LIMIT 1
);
```