good progress
This commit is contained in:
11
README.md
Normal file
11
README.md
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
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
|
||||
);
|
||||
```
|
Reference in New Issue
Block a user