UNION is a keyword of the SQL language for combining the results of multiple SQL's. The UNION syntax combines the results from multiple SQL selects by eliminating duplicates. The related tag is UNION-All. The UNION ALL keyword combines all the results from multiple SQL's without checking for ...
0
votes
1answer
20 views
MySQL Union always returns one row with NULL's
Given the following query…
SELECT DISTINCT *
FROM PAS_Post
WHERE post_user_id = 21
GROUP BY post_post_id
UNION
SELECT DISTINCT PAS_Post.*
FROM PAS_Follow LEFT JOIN ...
0
votes
3answers
22 views
Should this T-SQL be done using a UNION
Using the table below (call it TableA), I need to create an SQL statement that selects two sets of data and combines them together. First, I need to select those rows where Status = 1 and the ...
0
votes
2answers
12 views
sql union same parameters for two where = how to change it to one parameter
I have this query
select last_name, job_id, department_name, country_name, hire_date
, sysdate, salary
from employees e
, departments d
, locations l
, countries c
where ...
3
votes
1answer
43 views
Why is my union of two queries not ordering correctly?
(SELECT `size`, `type` FROM `table` WHERE `type`='a' ORDER BY `size` ASC)
UNION ALL
(SELECT `size`,`type` FROM `table` WHERE `type`='b' ORDER BY `size` DESC)
Why isn't this query working as I ...
-2
votes
4answers
37 views
Why does “union test{ short a,b; char c1,c2,c3,c4;};” store c1,c2,c3,c4 in same byte,two being available?
In my program below I can understand why the short members of the union are stored in the same 2 bytes (as size of the union is that of the largest member).But I just don't get it why all 4 character ...
1
vote
2answers
55 views
In SQL, how can I count the result of a UNION?
Suppose I have a query such as
SELECT * from frequency where (...)
UNION
SELECT * from frequency where (...)
How can I count how many results are returned from the above?
0
votes
3answers
31 views
Complex Query using Multiple Columns in a single table
Let's say that I have a table of race results. The table consists of seven columns as follows: Date ( MySql Date format of xxxx-xx-xx ), and one column each for the names of the top six finishers ...
0
votes
2answers
28 views
Use the ID of the upper select statement in the where clause of the lower select statement in a UNION
Data:
Table1:
ID Value1 Date1
1 foo 2013-04-27
2 bar 2013-05-01
3 umm 2013-05-29
4 ba ...
0
votes
3answers
38 views
how to count the number of records from an union operation in SQL?
I am using following SQL query
SELECT count(column1) from table1 where CONDITION1
UNION
SELECT count(column1) from table1 where CONDITION2;
When I run the query it give two numbers in outcome. But ...
0
votes
1answer
43 views
“Union Operation not allowed in sub query” is there a way to fix this in one single query?
This Query Dose NOT work in Access 2000
SELECT (Members.First_Name + " " + Members.Last_Name)AS Member,
(SELECT Friend_E_Mail,
FROM Friends,Members WHERE My_E_Mail = ? and Friend_E_Mail <> ?
...
0
votes
1answer
31 views
Oracle combine two rows into one
I have a result like this:
15.04.13 5 Doe, John 2431 null null 46 560 0 null 0
15.04.13 5 Doe, John 2431 paid 525 0 0 585 null 60
this is the result of a union ...
0
votes
3answers
36 views
SQL Union or other table join
I'm having trouble wrapping my head around an SQL query, trying to figure out something.
Just quickly, here is my (simple) table:
It's a representation of friends added in a social network site.
I ...
0
votes
3answers
28 views
JOIN SQL queries results in one
I would like to make a query of several select in one, my query works without the last SELECT but with it i have an error which is Operand should contain 1 column
Can someone tell me how to correct ...
0
votes
2answers
41 views
LINQ - UNION - remove duplicated based on a single column
I have this linq query where i want to remove all the duplicates based on the column MAILADR (but keep the other columns):
Dim dataObject = (From a In db.TABLE1 Select New With {
.ID = ...
-1
votes
2answers
59 views
UNION 2 Tables, (combining them) [closed]
I have Products_A
Product_ID Product_Name Price Quantity
11 MilkA 36 56 3
21 MeatB 123 78 23
31 SugarA 29 45 333
Products_B
Product_ID Product_Name ...
0
votes
1answer
31 views
Syntax error using a leading parenthesis with insert into
The left paren directly after the "into @gutsTVP" breaks this.
The error is on the right paren on line 12.
If remove that first set of parens around the first union it runs but it returns the wrong ...
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 ...
1
vote
2answers
35 views
SQL Union without duplicate values for one specific field
There're 3 tables DEVELOPER, MANAGER and PROJECT:
create table DEVELOPER(id int(4), lastname varchar(40), project_id int(4));
create table MANAGER(id int(4), lastname varchar(40), project_id ...
0
votes
1answer
53 views
Union ALL query failed in VBA but ok in SQL Developer
I have a very long query which contains 10 Union ALL statements, the whole query was fine in Oracle SQL Developer but failed in Excel VBA.
I tested the VBA code by removing the Union ALL statements ...
0
votes
2answers
32 views
TSQL find records with different writing in another table
I have a "MasterTable" with the following records:
MasterTable:
Col1
PX02894
PX02895
PX02896
PX02897/98
From the lookup table I want to get the Col2 links, keeping the formatting of the ...
0
votes
3answers
47 views
SQL: Multiple Union Statements
I am trying to construct a query of the following nature: If x is in the union of A and B, but not in the union of C and D, return x.
For example:
table table table table
+---+ +---+ ...
0
votes
3answers
13 views
SQL Order By issue with UNION
I have two SQL queries which using UNION.
SELECT
studentID
FROM
Student
UNION
SELECT
courseName
FROM
Course;
If I want to order the result by courseName, how can I do ...
0
votes
1answer
36 views
Alternate way for union to improve SQL Query
Please help me find another solution/block of code to get the same result but avoiding UNION.
Here is my code:
SELECT EQPID, "EVENTVAL" AS "EVENTVAL", SUM("20120501") AS "20120501", SUM("20120502") ...
0
votes
0answers
16 views
Sphinx using UNION for extra results with setFilter
I am improving features on existing site and one of the current features is to be able to filter results(companies) returned from Sphinx by company.city_id.
Now this feature needs to be improved so ...
0
votes
0answers
8 views
Using union in dynamic sql
Im new too dynamic SQL and i have written a query which contains parameters...
At the moment i have 3 different execute commands at the end of my query...
IF @DataItemsLevel = 'Case'
BEGIN
...
-1
votes
2answers
47 views
Union of dataframes in R by rownames
I have 4 dataframes, each the index in a list. I would like to combine them altogether as one dataframe. In set language from mathematics, it would make most sense for this to be the union on the ...
-1
votes
1answer
44 views
MySQL WHERE after UNION ALL not working [closed]
I'm trying to filter the results AFTER all tables have been united by UNION ALL. This isn't showing anything on my screen, even though 'test' is a title in the database. What am I doing wrong?
SELECT ...
0
votes
0answers
16 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
1answer
14 views
Create view with 2 tables Oracle 11g [closed]
Hi I have 2 tables I would like to merge together for a view
TEAM (teamID, playerID, positionID, lastName, position, previousTeam, newTeam,
gamesWon homeCourt)
SEASON (seasonID, ...
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 ...
0
votes
1answer
29 views
Using two tables. What am I doing wrong here?
I want to create an activity feed system and my feeds(statuses) and friends are in different tables in my database. How do I connect them so that the logged in user can only receive feeds from his/her ...
3
votes
2answers
72 views
reference member of a strange C++ struct
I came across a library called PolyBoolean. This is essentially irrelevant to my question.
In the library there is a strange struct type as follows:
struct VNODE2
{
VNODE2 * next;
VNODE2 * ...
0
votes
3answers
32 views
Union together with order by in mysql
I need to get the first column of two tables into one row, sorted by both of those columns.This is what I was able to write, but it is not working.
select title from movie
union
select ...
1
vote
3answers
54 views
Select data from 3 tables
I am trying to get some data from db.
username from login table
email from contact table
checking with 2 values in two tables tutor and institute
This is my code so far :
SELECT s. * , ...
1
vote
0answers
32 views
Optimize my query
I have a table in PostgreSQL as below.
CREATE TABLE my_data
(
indexid integer NOT NULL,
empid integer,
domainid integer,
modulename character varying(100),
groupname character varying(50),
...
0
votes
3answers
55 views
Use of UNION enables more powerful SQL constructions [closed]
I think it a shame that an OP deleted this question, poorly worded and phrased as it was; It provides an opportunity to demonstrate the use of the UNION operation in SQL to dynamically construct ...
0
votes
2answers
95 views
Creating own float structure in C++
Yet my lectures in C++ at university began yet i got my first problems. Our task was it to implement a self made structure in C++ for floating points via the IEEE 754 standard:
Create a data ...
4
votes
2answers
54 views
SELECT TOP … FROM UNION
What is the best way to SELECT TOP N records from UNION of 2 queries?
I can't do
SELECT TOP N ... FROM
(SELECT ... FROM Table1
UNION
SELECT ... FROM Table2)
because both queries return ...
-1
votes
2answers
44 views
SQL Query randomly stopped working?
I have an SQL query that provides information for an SSRS report. The report stopped working today and I've checked the query and its not working either. I cant see anything wrong with the query but ...
0
votes
2answers
25 views
MySQL select unique row entries of a column as columns in a new view or table
I have a dilemma. I am using a CMS that creates a database table where the records are populated as follows:
+------------+----------------+
| field_name | field_value |
...
-1
votes
2answers
64 views
Transform a SQL statement to CRITERIA with UNION
I have SQL code that I want to do in criteria (Hibernate) but I'm having trouble with it. My goal is to do this SQL code in Criteria:
SELECT * FROM
(
SELECT 'B', D.*
...
0
votes
0answers
44 views
Select multiple table in mysql with text instead of id
I have 3 tables - article, stof, elementen.
In the article table are the all articles linked with the stofid and elementid to the stof and elementen table.
Now the problem is I need to do a search in ...
0
votes
1answer
29 views
Indentify records from one table through a second table
I think the answer for my question might be relatively simple, but since I've only gotten into SQL since a few weeks, I really don't find a solution for the problem underneath;
I've got three Tables ...
0
votes
4answers
38 views
combine one column from one table with other column from two other tables sql
i'm not entirely sure how to title my question, if someone knows a better title, please feel free to edit it.
Basically I have a problem and I'm not sure what to do.
I have a database with Delivery ...
2
votes
1answer
50 views
Is it UNION, AND, OR?
I have tried all, is there another syntax that will work? I have the following
SELECT `ID` , `Home_Team`
FROM `FixturesDates` where `ID` =
(SELECT `ID`
FROM `FixturesDates`
WHERE ...
0
votes
1answer
32 views
sql server LIMIT with where but include at least once
I have a simple query like this:
SELECT subs.id_number,
op.dtupdated as dtopened
FROM subscribers AS subs
LEFT OUTER JOIN messages AS msg
ON msg.id_number = subs.id_number
LEFT JOIN ...
1
vote
1answer
106 views
MS Access Looping a union query through all columns?
Is it possible to simplify the following into a loop?
SELECT ID as ColHead, "Field1" AS RowHead, Field1 AS TheVal
FROM `master`
UNION
SELECT ID, "Field2",Field2
FROM `master`
UNION
SELECT ID, ...
0
votes
2answers
64 views
SQL Server Row_number in odd/even number?
I have a question about querying accounting data.
For example, the sample data is show like below
Table: Table_Test
Date Amount
2013-01-01 12.00
2013-01-02 13.00
The output should be ...
3
votes
1answer
85 views
C++ anonymous structs
I use the following union to simplify byte, nibble and bit operations:
union Byte
{
struct{
unsigned int bit_0: 1;
unsigned int bit_1: 1;
unsigned int bit_2: 1;
unsigned int bit_3: ...
0
votes
2answers
58 views
select 10 rows forwards and 10 backwards from a date
I'm trying to select 10 rows from today's date in either direction (forward and backwards in time) and in date order. The best I've got so far is:
SELECT * FROM (
SELECT * FROM foo WHERE dt >= ...



