Custom Select Query – Selecting the Year?

Don’t use the direct SQL query, there’s no point and it’s bad practice.

Instead use WP_Query:

$year = date('Y');
$query = new WP_Query(
    array(
        'year' => $year,
        'post_type' => 'news'
    )
);