`UNION ALL` is a keyword of the SQL language for performing combining the results of multiple SELECTs. The related tag is `UNION` that combines all the results without checking for Uniqueness. The `UNION ALL` combines the results eleminating duplicates.

learn more… | top users | synonyms

1
vote
1answer
24 views

insert multiple rows in single SQL

I am trying to insert multiple rows with SQL statement. For that i refered this question. According to top scored answer in this qestion, i made following query: INSERT INTO login ...
0
votes
3answers
48 views

SQL Optimization for DB2

If you have a situation where you are doing a Union All on two result sets, and the each result set is derived from an inner join with the same filtered subset of a master table does the query engine ...
0
votes
2answers
9 views

SQL search on title field with like and custom ordering

I have a song database and need to implement a search. I want to produce a list of results where the head of the list is the result of like 'st%' and the rest is the result of like '%st%' If I ...
0
votes
0answers
17 views

Improving the performance of the query in sql

I am not very good in sql queries and want to learn more. currently i am facing a problem and search alot on google but nothing helped me. I have a query which uses UNION ALL,everything is working ...
2
votes
2answers
44 views

which one should i used of Union all and union when i want to eliminate the duplicate records?

As title. i have seen this, people all saying that we should consider union all first for the performance, my question is which one should i use when i want to eliminate duplicate records. i have ...
1
vote
2answers
57 views

select union all order by

SELECT TOP 1 hol_id , CONVERT(VARCHAR(12), hol_date, 112) FROM holiday WHERE hol_id = 5 UNION ALL SELECT hol_id , CONVERT(VARCHAR(12), hol_date, 112) FROM holiday ...
3
votes
3answers
107 views

Don't repeat yourself: same SQL query, but two different tables

I have an SQL query with exact the same code, but two different tables (AUDIT_TRAIL_ARCHIVE and AUDIT_TRAIL). I use "UNION ALL" to have one result. Good programmers use "Don't repeat yourself" ...
1
vote
3answers
41 views

How to combine rows of 2 tables having some columns same and some different

I have two tables for user posts, one for text post and one for multimedia post, the structure of both tables is as follows. table text_post ...
0
votes
1answer
89 views

sqlite union all optimization

I have a sqlite DB query that looks something like this: SELECT origin, destination, weight, rate, 0 as group from groupAZones, groupARates where tms = groupZone ...
2
votes
1answer
46 views

Union all - 3 tables, 2 will never contain duplicates, the other will

I know the union all questions gets asked a lot, but I have a slight variation. I will be doing a union all on three different queries/tablesets. The first 2, by definition of their queries, will ...
0
votes
1answer
40 views

Retrieving data from multiple schemas in a single database

I'm having more than one schemas inside a single database. Say, DBTEST (Database) SCH001 (schema1) SCH002 (schema2) Similarly, I'm having a table called Tbl which is present in the both ...
1
vote
2answers
134 views

Tsql, union changes result order, union all doesn't

i know union removes duplicates but it changes result order even when there is no duplicates I have two select statements, no order by statement anywhere I want union them with or without (all) ...
0
votes
2answers
170 views

SQL Server Type Cast for DateTime field and UNION ALL

I am facing a strange behaviour of SQL Server (T-SQL) when it comes to using UNION ALL and having to pad one table (the one to be joined by the UNION command). Table 1: Firstname Lastname Date ...
2
votes
2answers
101 views

Why does UNION ALL seem to wait for both queries to finish?

Running this query: select null, "hello" union all select sleep(4), "world"; on 5.5.29 doesn't return the first row right away as expected. Instead, I have to wait 4 seconds before getting ...
1
vote
2answers
75 views

UNION query doesn't work

This is my UNION ALL query but it won't work, I'm not sure why, it seems correct SELECT ID AS IDzivotinja, zivotinja FROM zivotinje WHERE IDveterinar=$ID ...
0
votes
1answer
80 views

Put multiple fields in one column

Ok, so I have the following query that sort of works, but I find it to be kludgy and inefficient, and it outputs blobs for most of the data fields which isn't what I want. I know this is a bit of ...
1
vote
1answer
132 views

Using OPENQUERY with a table created on the fly

I have a four-part linked server query that LEFT OUTER JOINs a table created on the fly using UNION ALL, something along these lines: SELECT t.column1, rlt.s6, SUM(t.column3) column3 FROM ...
0
votes
0answers
43 views

Using iteration over multiple tables?

I currently use the below query to unpivot a single table: SELECT Fund ,Department ,[Business Unit] ,[Obj Acct] ,Sub ,YearDate ,MonthDate ,Actuals FROM (SELECT Fund ...
0
votes
1answer
29 views

SQL Server reference fields in derived table with unions

I'm having a bit of an issue with some derived tables that I hope someone will be able to help with. What I've got is 2 derived tables inside a select statement that then uses a pivot to display the ...
1
vote
1answer
76 views

Is there a way to include a query that is non updateable in an UPDATE query? [duplicate]

For the following query: UPDATE tempSpring_ASN AS t SET t.RECORD_TYPE = ( SELECT TOP 1 RECORD_TYPE FROM ( SELECT "A" AS RECORD_TYPE FROM TABLE5 ...
0
votes
0answers
60 views

MySQL Union Missing Rows of Second Query

I have two queries which are working separately as expected. When I have used union to get results of both queries at a time, no rows from second query is fetched. My query is simplified as follows: ...
0
votes
1answer
128 views

MySQL Select JOIN multiple Tables

I essentially have two groups of tables. 'props_' and 'avail_'. Each with approx. 4 tables which i have joined using UNION ALL. I need to select the properties with the necessary location & ...
0
votes
1answer
82 views

How to make UNION of 2 SELECT statement

This is my query: string x1 = "SELECT unos_golub.drzava, unos_golub.spol, unos_golub.broj_goluba as broj, parovi.par_m, parovi.par_z,parovi.broj_para FROM parovi JOIN unos_golub ON ...
2
votes
2answers
92 views

MySQL Get COUNT from combined multiple fields

Say I have a table: user_id parent_id lev1 lev2 lev3 lev4 1 0 0 0 0 0 2 1 1 0 0 0 3 1 1 ...
1
vote
4answers
135 views

Same number of columns for Union Operation

I was going through union and union all logic and trying examples. What has puzzled me is why is it necessary to have same number of columns in both the tables to perform a union or union all ...
0
votes
1answer
40 views

Union Query or a better option

I have the following three tables and I want to pull data out of them by the userid, that is the one key field that gives them a relationship. I also want to pull the data in order by timestamp ...
1
vote
1answer
66 views

Query optimization SQL

Okay so I've been trying and testing for hours on end now and I cannot seem to get my query to work any bit faster. I have a huge query with a ton of UNION ALL in between them. Sadly, the query takes ...
2
votes
3answers
88 views

Is the order of union all guaranteed

Is it guaranteed that order of two parts of the union all query will be given in the particular order? I.e. that the result of this query: select 'foo' from dual union all select 'bar' from dual ...
0
votes
1answer
81 views

SQL query with UNION, SELECT and JOIN

I have three tables with these fields: product_views: ProductMasterID, Date product_clicks: ProductMasterID, Date product_master: ProductMasterID, Category Anytime someone views a product on my ...
0
votes
3answers
241 views

Trying to use UNION ALL to INSERT into temporary table

I'm trying to setup a basic search script. It was suggested to insert data from current mysql tables into a temp table to speed the search up. Here is the code I've got so far: $temp = 'search_' . ...
1
vote
1answer
259 views

What are the Limitations for Connecting to an Access Query in Excel

I have an Access 2007 database that has a number of tables, some are fairly large (100,000+ records); I have created a union query to pull some of the same types of data from multiple tables into one ...
1
vote
1answer
255 views

Using “Union All” with Queries Between Databases

I have a interesting situation that I want to see if there is a solution to...I have 4 tables in 4 databases on the same server, all with the same structure: dbo.IL_Membership in Pnl_IL_2012 database ...
2
votes
1answer
119 views

Use UNION and UNION ALL in same query

I am running into some performance issue and I have a query as follow: SELECT * FROM Foo UNION SELECT * FROM Boo UNION SELECT * FROM Koo I know for sure that Koo is not returning any ...
0
votes
3answers
72 views

MySQL Join Return Null

I have two tables Table_1 id|subject_code|subject_id 1|Test1 |1 2|Test2 |2 3|Test3 |3 Table2 id|subject_id|grade|status 1|1 |5.00 |Fail 2|3 |2.25 |Pass Now, ...
1
vote
1answer
258 views

How do I continue the process after inserting non-matching lookup rows into a table?

Inside a data flow, is it possible to do a lookup, insert the non-matching rows, re-lookup and then continue with the full (original) data set? I can't see how you get/re-use the inserted rows after ...
5
votes
2answers
135 views

Union of a query with itself generates different plan

This query below: Query 1: SELECT * FROM DUAL is equivalent to and produces the same result as: Query 2: SELECT * FROM DUAL UNION SELECT * FROM DUAL This is obvious BEFORE running the two ...
0
votes
2answers
103 views

Using Union All and Order By in MySQL

I have two tables. Advertised Products : id , title , timestamp And Wanted Products : id , title , timestamp Both tables have same number of columns and all the titles are of same name in ...
1
vote
0answers
212 views

How to force push predicate through UNION ALL inside a view?

I have a performance problem on a UNION ALL view. The problem can be solved by rewriting the view in two separate views but that kind of defeats the purpose of creating a view. Here is a simple test ...
0
votes
2answers
1k views

UNION ALL Sql query - how to bind three tables

I have the following tables: T1 ID PRIORITY 1 1 2 1 3 2 4 4 T2 ID SERVICE 1 PSTN 1 ADSL 3 ADSL T3 ID DEVICE 1 BSC1 3 BSC7 4 BSC7 I want as ...
1
vote
2answers
285 views

TSQL UNION GETTING UNIQUE VALUE

I'm trying to get the unique record between two databases based on two criteria. The criteria is: If the data is found in database 1 (@SCCM in my example below), it is given preference Grab the ...
0
votes
2answers
122 views

MySQL count across multiple tables and get single value

Imagine: t1 = 1 t2 = 3 t3 = 5 I need to run individual selects on each table, and report the count in a single amount, ie: select * from (select count(*) from t1) + ...
0
votes
2answers
232 views

SQL union all not includes zero values

I am using union all to unite several queries, but union all is not inserting an empty row for those zero values. I took a look in the site and according to this question, it should include them: ...
0
votes
2answers
447 views

How to retrieve data from multiple table with mysql [duplicate]

ı have 2 different table, one is boys another is girls. ı want to list all with one query. ı tried to use union but it doesnt work. $query=mysql_query("select * from girls union select * from ...
3
votes
3answers
86 views

Can't UNION ALL two equivelent queries?

I have a working query that I need to repeat a few times, however I'm getting syntax errors on the UNION ALL: Working query: set @num := 0, @group := ''; select person, `group`, age from ( ...
1
vote
3answers
187 views

How to join results of 'union all' in SQL

I have combined two tables using union all. However, the produced data has repeats. Is there a way to join the repeats? For example, the resulting table after union all, t, looks like this": ...
0
votes
2answers
103 views

combining resultset obtained by select statements to create a view

I have 4 Select statements for 4 different tables each Select query gives latest record meeting specified condition for ex: Select TOP 1 * from table where column_name = 'something' order by col1 ...
0
votes
0answers
57 views

Why does “in” not work with “union all” sub queries?

This usually works in oracle but I fnd it hard to replicate in MySQL. My query is like this: select * from MPT_CATEGORY_OLD ac where ac.category_id in ( (SELECT 1 category_id) UNION ALL ...
0
votes
1answer
427 views

Union all where date clause

My Query SELECT RoomType, date FROM Superior WHERE (date >= '2012-06-26'AND date < '2012-06-30')AND (Avail > '0') UNION SELECT RoomType, date FROM Deluxe WHERE (date >= '2012-06-26'AND ...
1
vote
0answers
59 views

MySQL Union and ORDER BY

(SELECT * FROM Test1 WHERE (date >= '2012-06-28'AND date < '2012-06-30') AND (Avail > '0')) UNION (SELECT * FROM Test2 WHERE (date >= '2012-06-28'AND date < '2012-06-30') AND (Avail ...
0
votes
1answer
290 views

Rails - “order by” after “union all”

How to make this (PostgreSQL) using Rails syntax?: SELECT fld1, fld2 FROM ( SELECT fld1, fld2, count(*) as cnt FROM data WHERE fld2 not in('exclude1', 'exclude2') GROUP BY fld1, fld2 ORDER BY ...

1 2 3