79357752

Date: 2025-01-15 10:03:17
Score: 0.5
Natty:
Report link

It looks like you need a full outer join on Date and Name. The full outer join ensures that in your result you will also get Dates and Names that are only present in Table1 or Table2.

SELECT *
FROM Table1
FULL OUTER JOIN Table2
ON Table1.Date = Table2.Date AND Table1.Name = Table2.Name
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bending Rodriguez