mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
5 lines
170 B
SQL
5 lines
170 B
SQL
select character_full_name, uc_character_name
|
|
from players
|
|
where uc_character_name != SUBSTR(LOWER(character_full_name), 1, INSTR(character_full_name || ' ', ' ', 1)-1)
|
|
|