So I'm trying to do a select statement from this table:
+--------+-------+--------+
| LETTER | COLOR | NUMBER |
+--------+-------+--------+
| A | red | 1 |
| B | red | 2 |
| A | black | 3 |
| C | red | 4 |
| B | black | 5 |
| D | red | 6 |
| E | red | 7 |
| C | black | 8 |
| C | black | 9 |
| C | red | 10 |
+--------+-------+--------+
Basically, I want to do a "SELECT *", but skip rows in which the letter is C and the color is "black".
In other words, the results of the SELECT would be the entire table except for those two penultimate rows.
How would I construct that statement?