Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,094 questions

40,775 answers

573 users

How to combines the result of two or more SELECT statements in SQL

5 Answers

0 votes
--  SELECT with DISTINCT by default

SELECT FirstName FROM Workers
UNION
SELECT Meal FROM LunchOrders

 





answered Sep 20, 2015 by avibootz
0 votes
SELECT FirstName FROM Workers
UNION
SELECT Meal FROM LunchOrders
ORDER BY Meal

 





answered Sep 20, 2015 by avibootz
0 votes
--  (UNION ALL) SELECT without DISTINCT, allow duplicate 

SELECT FirstName FROM Workers
UNION ALL
SELECT Meal FROM LunchOrders

 





answered Sep 20, 2015 by avibootz
0 votes
SELECT category FROM all_info
UNION
SELECT word FROM words
WHERE word LIKE '%a%'

 





answered Sep 20, 2015 by avibootz
0 votes
SELECT category FROM all_info
UNION
SELECT word FROM words
WHERE word LIKE '%ie%'
Order BY category

 





answered Sep 20, 2015 by avibootz
...