Informatics Practices
How is UNION different from UNION ALL ?
SQL Joins & Grouping
2 Likes
Answer
In SQL, UNION ALL
retains all duplicate rows from tables in the final output, while UNION
removes duplicate rows from the final output.
Answered By
1 Like