Bro, i got the solution.
Search “prepare()” or your line error
this is my code with error
$leagues = $wpdb->get_results($wpdb->prepare("SELECT id, name, year FROM $wpdb->league ORDER BY year DESC, name ASC"));
and this is whiout error
$leagues = $wpdb->get_results($wpdb->prepare("SELECT id, name, year FROM $wpdb->league ORDER BY year DESC, name ASC", null));
hope help