How to get row value from wpdb

As @nmr says, $row is an array of objects. You’ll need to foreach these – and do the check in the foreach like this:

foreach ($row as $item) {
    if($item->notification == '1') {
        echo 'Yes';
    }
}

And there’s no “notification” column as far as I know.

Also, can you explain what you’re trying to achieve? Maybe there’s an easier way to achieve your goal.

Best regards