mirror of
https://github.com/hermensbas/azerothcore_installer.git
synced 2026-01-13 00:28:33 +00:00
6 lines
236 B
SQL
Executable File
6 lines
236 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}}';
|