The first table:
day | title
1 | "Lorem"
2 | "Ipsum"
The second table:
day | title
2 | "Amor"
3 | "Zeus"
Now I need such a result:
day | title
1 | "Lorem"
2 | "Amor"
3 | "Zeus"
How to do that with a single query?
Edit:
"Zeus" added to the second table.