Answers for "UNION SQ;"

SQL
2

sql union

-- UNION: distinct values (slower)
SELECT emp_name AS name from employees
UNION       
SELECT cust_name AS name from customers;

-- UNION ALL: keeps duplicates (faster)
SELECT emp_name AS name from employees
UNION ALL      
SELECT cust_name AS name from customers;
Posted by: Guest on April-22-2021
0

UNION

UNION(<table_expression1>, <table_expression2> [,<table_expression>]…)
Posted by: Guest on July-01-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language