SELECT 
  a.code, 
  b.state 
FROM 
  cscart_states as a 
  LEFT JOIN cscart_state_descriptions as b ON b.state_id = a.state_id 
  AND b.lang_code = 'ru' 
WHERE 
  a.country_code = 'KR' 
ORDER BY 
  b.state

Query time 0.00038

JSON explain

{
  "query_block": {
    "select_id": 1,
    "filesort": {
      "sort_key": "b.state",
      "temporary_table": {
        "table": {
          "table_name": "a",
          "access_type": "ref",
          "possible_keys": ["cs", "country_code"],
          "key": "country_code",
          "key_length": "8",
          "used_key_parts": ["country_code"],
          "ref": ["const"],
          "rows": 28,
          "filtered": 100,
          "index_condition": "a.country_code = 'KR'"
        },
        "table": {
          "table_name": "b",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["state_id", "lang_code"],
          "ref": ["devmotorsbay.a.state_id", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(b.lang_code = 'ru')"
        }
      }
    }
  }
}

Result

code state
32 강원도
06 강원도
13 경기도
31 경기도
20 경상남도
38 경상남도
37 경상북도
14 경상북도
24 광주광역시
18 광주광역시
15 대구광역시
25 대전광역시
19 대전광역시
10 부산광역시
11 서울특별시
29 세종특별자치시
22 세종특별자치시
21 울산광역시
26 울산광역시
23 인천광역시
12 인천광역시
16 전라남도
36 전라남도
03 전라북도
35 전라북도
01 제주특별자치도
39 제주특별자치도
17 충청남도
34 충청남도
33 충청북도
05 충청북도