SELECT Results

I am not really sure about the following code:

**$result ** = @mysql_query(‘SELECT * FROM mystuff’);
if (!$result) {
die(’<p>Error performing query: ’ . mysql_error() . ‘</p>’);
}

can anyone explain what the $results does exactly?