How to use SQL UNION
If you’re trying to improve the readability of your data, you might want to combine records from different tables into a new target table, without duplicates. Rather than copying records piece by piece into the new table, you can use SQL’s UNION operator. In this tutorial, we…