mirror of
https://github.com/hermensbas/azerothcore_installer.git
synced 2026-01-13 08:37:17 +00:00
6 lines
244 B
SQL
Executable File
6 lines
244 B
SQL
Executable File
USE acore_auth;
|
|
SELECT acc.id AS accountId, ch.name as characterName, ch.guid AS characterId,
|
|
FROM acore_auth.account AS acc
|
|
INNER JOIN acore_characters.characters AS ch
|
|
WHERE acc.id = ch.account and acc.username = '{{ACCOUNT_NAME}}';
|