Tagged Questions

UNION is a keyword of the SQL language for combining the results of multiple SQL's. The UNION synatx combines all the results without checking for Uniqueness. The related tag is UNION-All. The UNION ALL keyword combines the results from multiple SQL's eleminating duplicates.

learn more… | top users | synonyms

29
votes
7answers
18k views

Difference between a Structure and a Union in C

Is there any good example to give the difference between a 'struct' and a 'union'? Basically I know that struct uses all the memory of its member and union uses the largest members memory space. Is ...
26
votes
6answers
610 views

Unions as Base Class

The standard defines that Unions cannot be used as Base class, but is there any specific reasoning for this? As far as I understand Unions can have constructors, destructors, also member variables, ...
24
votes
13answers
2k views

Purpose of Unions in C and C++

I have used unions earlier comfortably; today I was alarmed when I read this post and came to know that this code union ARGB { uint32_t colour; struct componentsTag { uint8_t b; ...
20
votes
8answers
2k views

What's a good, generic algorithm for collapsing a set of potentially-overlapping ranges?

I have a method that gets a number of objects of this class class Range<T> { public T Start; public T End; } In my case T is DateTime, but lets use int for simplicity. I would like a ...
19
votes
12answers
33k views

SQL Query - Using Order By in UNION

How can one programmatically sort a union query when pulling data from two tables? For example, SELECT table1.field1 FROM table1 ORDER BY table1.field1 UNION SELECT table2.field1 FROM table2 ORDER BY ...
18
votes
18answers
2k views

C: Where is union practically used?

I have a example with me where in which the alignment of a type is guaranteed, union max_align . I am looking for a even simpler example in which union is used practically, to explain my friend.
16
votes
3answers
357 views

An union with a const and a nonconst member?

This appears to be undefined behavior union A { int const x; float y; }; A a = { 0 }; a.y = 1; The spec says Creating a new object at the storage location that a const object with static, ...
16
votes
13answers
1k views

C/C++: When would anyone use a union? Is it basically a remnant from the C only days?

I still don't really get unions. I mean I do understand them. Every C or C++ text I go through introduces them (sometimes in passing), but they tend to give very few practical examples of their use or ...
16
votes
8answers
668 views

geospatial queries in javascript

I'm looking for a library in javascript that would allow me to make geospatial queries. I know about OpenLayers and GoogleMaps, but this two do not support things like union intersection and so on. ...
15
votes
5answers
507 views

Union in c++ are they feasible

Can a union in C++ have a member function? How do union with data members and member functions exist if an object is created? If I suppose yes, then are they feasible any where. If yes then where?
15
votes
5answers
2k views

Union of complex polygons

Given two polygons: POLYGON((1 0, 1 8, 6 4, 1 0)) POLYGON((4 1, 3 5, 4 9, 9 5, 4 1),(4 5, 5 7, 6 7, 4 4, 4 5)) How can I calculate the union (combined polygon)? Dave's example uses SQL server to ...
14
votes
6answers
2k views

gcc, strict-aliasing, and casting through a union

Do you have any horror stories to tell? The GCC Manual recently added a warning regarding -fstrict-aliasing and casting a pointer through a union: [...] Taking the address, casting the resulting ...
13
votes
4answers
2k views

Why does C++ disallow unnamed structs and unions?

Some C++ compilers permit unnamed unions and structs as an extension to standard C++. It's a bit of syntactic sugar that's occasionally very helpful. What's the rationale that prevents this from ...
12
votes
4answers
145 views

Is const-casting via a union undefined behaviour?

Unlike C++, C has no notion of a const_cast. That is, there is no valid way to convert a const-qualified pointer to an unqualified pointer: void const * p; void * q = p; // not good First off: ...
12
votes
8answers
12k views

How to use anonymous structs / unions in c?

I can do this in c++/g++: struct vec3 { union { struct { float x, y, z; }; float xyz[3]; }; }; Then, vec3 v; assert(&v.xyz[0] == &v.x); ...
12
votes
5answers
5k views

C++ union in C#

I'm translating a library written in C++ to C#, and the keyword 'union' exists once. In a struct. What's the correct way of translating it into C#? And what does it do? It looks something like this; ...
11
votes
6answers
7k views

SQL Server UNION - What is the default ORDER BY Behaviour

If I have a few UNION Statements as a contrived example: SELECT * FROM xxx WHERE z = 1 UNION SELECT * FROM xxx WHERE z = 2 UNION SELECT * FROM xxx WHERE z = 3 What is the default order by ...
10
votes
3answers
768 views

How do boost::variant and boost::any work?

How do variant and any from the boost library work internally? In a project I am working on, I currently use a tagged union. I want to use something else, because unions in C++ don't let you use ...
10
votes
6answers
1k views

A question about union in C

I was reading about union in C from K&R, as far as I understood, a single variable in union can hold any one of the several types and if something is stored as one type and extracted as another ...
10
votes
11answers
1k views

Union – useless anachronism or useful old school trick?

I recently came across a great data structures book,"Data Structures Using C" (c) 1991, at a local Library book sale for only $2. As the book's title implies, the book covers data structures using the ...
8
votes
2answers
171 views

Would this union work if char had stricter alignment requirements than int?

Recently I came across the following snippet, which is an attempt to ensure all bytes of i (nad no more) are accessible as individual elements of c: union { int i; char c[sizeof(int)]; }; Now ...
8
votes
2answers
248 views

Is there a neater linq way to 'Union' a single item?

If I have two sequences and I want to process them both together, I can union them and away we go. Now lets say I have a single item I want to process between the two sequencs. I can get it in by ...
8
votes
3answers
434 views

Using unions to simplify casts

I realize that what I am trying to do isn't safe. But I am just doing some testing and image processing so my focus here is on speed. Right now this code gives me the corresponding bytes for a ...
8
votes
7answers
7k views

sizeof a union in C/C++

What is the sizeof the union in C/C++? Is it the sizeof the largest datatype inside it? If so, how does the compiler calculate how to move the stack pointer if one of the smaller datatype of the union ...
8
votes
5answers
2k views

Java: Is there an easy, quick way to AND, OR, or XOR together sets?

That is, if I had two or more sets, and I wanted to return a new set containing either: All of the elements each set has in common (AND). All of the elements total of each set (OR). All of the ...
7
votes
3answers
112 views

Can we use va_arg with unions?

6.7.2.1 paragraph 14 of my draft of the C99 standard has this to say about unions and pointers (emphasis, as always, added): The size of a union is sufficient to contain the largest of its members. ...
7
votes
2answers
243 views

How are the union members stored?

union test { int i; char ch; }t; int main() { t.ch=20; } Suppose sizeof(int)==2 and let the memory addresses allocated for t are 2000, 2001. Then where is 20 i.e. t.ch stored - at 2000 or 2001 or ...
7
votes
4answers
231 views

Conceptual problem in Union

My code is this // using_a_union.cpp #include <stdio.h> union NumericType { int iValue; long lValue; double dValue; }; int main() { union NumericType ...
7
votes
2answers
3k views

rails union hack, how to pull two different queries together

I have a query which searches two separate fields in the same table... looking for locations which are most likely a specific city, but could also be a country... ie the need for two fields. Table ...
7
votes
2answers
1k views

Union element alignment

If I have a union, C standard guarantees that the union itself will be aligned to the size of the largest element. union U { long l; int i; short s; char c[2]; } u; But what does it ...
7
votes
3answers
2k views

Convert List<List<T>> into List<T> in C#

I have a List<List<int>>. I would like to convert it into a List<int> where each int is unique. I was wondering if anyone had an elegant solution to this using LINQ. I would like ...
6
votes
4answers
173 views

Iterating through the union of several Java Map key sets efficiently

In one of my Java 6 projects I have an array of LinkedHashMap instances as input to a method which has to iterate through all keys (i.e. through the union of the key sets of all maps) and work with ...
6
votes
4answers
177 views

Naming Array Elements, or Struct And Array Within a Union

Consider the following struct: struct Vector4D { union { double components[4]; struct { double x, y, z, t; } Endpoint; }; }; It seems to me that I have seen something similar ...
6
votes
4answers
203 views

union initialisation

I'm attempting to globally initialise a union as in the following example: #include <cstdio> typedef union { char t[4]; int i; } a; enum { w = 5000, x, y, z }; a temp ...
6
votes
5answers
148 views

Is using an union in place of a cast well defined?

I had a discussion this morning with a colleague regarding the correctness of a "coding trick" to detect endianness. The trick was: bool is_big_endian() { union { int i; char ...
6
votes
2answers
1k views

Merge Dictionary<TKey, TValue> with Enumerable.Union method

I'm testing the UNION method to merge to dictionaries (of type Dictionary). It works fine with TValue type is string or int or even object. But if TValue type is a collection (tested with List and ...
6
votes
9answers
551 views

ANSI C unions - are they really useful?

From a response to some question yesterday, I learned that it is nonportable and unsafe to write into one union member and read the value from another member of a different type, assuming underlying ...
6
votes
4answers
891 views

Statically initialize anonymous union in C++

I am trying to statically initialize the following structure in Visual Studio 2010: struct Data { int x; union { const Data* data; struct {int x; int y; }; }; }; The ...
6
votes
4answers
527 views

Merge two rows in SQL

Assuming I have a table containing the following information: FK | Field1 | Field2 ===================== 3 | ABC | *NULL* 3 | *NULL* | DEF is there a way I can perform a select on the table to ...
6
votes
5answers
2k views

How do I Combine these SQL SELECT queries into one SELECT statement

How do I combine these two select statements into one query: SELECT SUM( incidents ) AS fires, neighborhoods AS fire_neighborhoods FROM ( SELECT * FROM `fires_2009_incident_location` UNION ALL ...
6
votes
3answers
465 views

SQL - Identifying source table from UNION query

I'm building an RSS feed in PHP which uses data from three separate tables. The tables all refer to pages within different areas of the site. The problem I have is trying to create the link fields ...
6
votes
7answers
2k views

How can I order entries in a UNION without ORDER BY?

How can I be sure that my result set will have a first and b second? It would help me to solve a tricky ordering problem. Here is a simplified example of what I'm doing: SELECT a FROM A LIMIT 1 ...
6
votes
7answers
26k views

Hibernate Union alternatives

What alternatives do I have to implement a union query using hibernate? I know hibernate does not support union queries at the moment, right now the only way I see to make a union is to use a view ...
5
votes
4answers
103 views

Does C struct padding make this use unsafe?

Suppose I have a struct, be it union'd or otherwise: typedef struct { union { struct { float x, y, z; } xyz; struct { float r, g, b; } rgb; float ...
5
votes
2answers
107 views

C++ union to represent data memory vs C scalar variable type

Today I've a weird question. The Code(C++) #include <iostream> union name { int num; float num2; }oblong; int main(void) { oblong.num2 = 27.881; std::cout << ...
5
votes
4answers
132 views

Can an Ada Variant Record be binary compatible to a C++ union?

I am designing a communication middleware for use in an application which has a module in Ada and many modules in C++ which communicates passing parameters (scalar values) and structures. The ...
5
votes
4answers
264 views

C# fastest union of 2 sets of sorted values

Possible Duplicate: C# fastest intersection of 2 sets of sorted number What is the fastest way to union 2 sets of sorted values? Speed (big-O) is important here; not clarity - assume this ...
5
votes
4answers
221 views

Is a union more efficient than a shift on modern compilers?

Consider the simple code: UINT64 result; UINT32 high, low; ... result = ((UINT64)high << 32) | (UINT64)low; Do modern compilers turn that into a real barrel shift on high, or optimize it to a ...
5
votes
4answers
84 views

In PostgreSQL (and maybe other engines), why does the UNION statement consider NULL values the same, while the UNIQUE constraint does not?

I understand that the SQL standard allows multiple NULL values in a column that is part of the UNIQUE constraint. What I don't understand is why the UNION construct (at least in PostgreSQL,) treats ...
5
votes
3answers
154 views

Using a UNION or UNION ALL on two select statements makes them incredibly slower

I have two queries, let's call them Query A and Query B. Both of these queries run in under a second for the scenario I'm testing and Query A returns 1 result, and Query B returns 0 results. If I ...

1 2 3 4 5 17