What type of join returns all rows from the right table, paired with matching records from the left table, or filling in NULL values if no match is found?
Explanation:
A Right Outer Join retains all rows from the right table, pairing them with matching left table entries or supplying NULL values if matches do not exist.
Explanation:
The DEFAULT constraint assigns a predefined default value to a column when an INSERT statement does not explicitly provide a value for that column.
No comments yet. Be the first to start the discussion!