Customers_USA and Customers_UK. Both tables contain the columns: CustomerID, FullName, Email, and Age.
FullName and Email addresses from both the USA and UK tables.A junior developer wrote the following query, but SQL Server keeps throwing an error. Explain which rule this violates and rewrite it correctly.
SELECT FullName, Email, SignupDate FROM Customers_USA UNION SELECT FullName, Email FROM Customers_UK;
FullName and Email from both tables. However, add a third custom column to both SELECT statements called Region. Hardcode the value as 'USA' for the first table, and 'UK' for the second table.FullName column.