SELECT 
  ushop_state_descriptions.state 
FROM 
  ushop_states 
  LEFT JOIN ushop_state_descriptions ON ushop_state_descriptions.state_id = ushop_states.state_id 
  AND ushop_state_descriptions.lang_code = 'es' 
WHERE 
  ushop_states.country_code = 'US' 
  AND ushop_states.code = 'RN'

Query time 0.00061

JSON explain

{
  "query_block": {
    "select_id": 1,
    "message": "no matching row in const table"
  }
}