I have a table with an id column that references a row from the same table that represents a set of default values the row should return if any of the values are NULL. For example:
'content'
id | a | b | default_id
----------------------------------
1 | 33 | 55 | NULL
2 | NULL| 11 | 1
So I want to query row 2 in a way that I get back a result with 'a' = 33 and 'b' = 11. Is there some simple way to do this?