Two rows having null values merge into one row without null values
You can use grouping to get only one row per Name. If more than one row for the same Name and column have values you have to decide what to do with those values: do you want to see minimum, maximum, sum, average etc? So for example:
SELECT Name, min(Opp), min(Bid), min(Pro) FROM your_table GROUP BY Name