active questions tagged union - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:47:12Z http://stackoverflow.com/feeds/tag/union http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1793082/how-to-dynamically-create-a-union-instance-in-c 1 How to dynamically create a union instance in c++? derrdji 2009-11-24T21:37:26Z 2009-11-24T21:52:59Z <p>I need to have several instances of a union as class variables, so how can I create a union instance in the heap? thank you</p> http://stackoverflow.com/questions/1786066/questions-about-vector-union-and-pointers-in-c 2 Questions about vector, union, and pointers in c++ derrdji 2009-11-23T21:22:03Z 2009-11-23T22:41:34Z <p>The question I have are NOT homework questions, but I am considering using these concepts in my assignment. The content,if it helps, is like this: I need to keep track of several union instances and they belong to my own union in one of my own class as class variables. (Note: the number of union instance is unknown, so I cannot just have a fixed number of union instances.</p> <ol> <li><p>Q1: If I have a union say MyUnion, and many instances of this union, can I then put them into a vector like</p> <pre><code>vector&lt;union MyUnion&gt; myVector(10); </code></pre></li> <li><p>Q2: Is it valid to have a pointer of union? like</p> <pre><code>union MyUnion *myUnionPtr = new union myUnion; </code></pre></li> <li><p>Q3: I am considering using a vector of union pointers in my implementation, is this concept correct? Also, is it a normal approach in c++? Do I need to rethink about my design?</p></li> </ol> <p>thank you</p> http://stackoverflow.com/questions/1777310/good-way-to-combine-two-listts-in-net-2-0 3 Good way to combine two List<T>s in .NET 2.0? larryq 2009-11-22T00:32:05Z 2009-11-23T13:13:32Z <p>I have two lists I need to form the union of, but I'm in .NET 2.0 so the Union() method appears to be out. These are lists of integers, so no problem with the equality comparisons. What's a good way to go about this?</p> http://stackoverflow.com/questions/1777574/what-does-union-u-look-like-in-the-memory 1 what does union U look like in the memory? cplusplusNewbie 2009-11-22T02:09:21Z 2009-11-22T02:49:49Z <pre><code>enum Enums { k1, k2, k3, k4 }; union MYUnion { struct U{ char P; }u; struct U0 { char state; } u0; struct U1 { Enums e; char c; int v1; } u1; struct U2 { Enums e; char c; int v1; int v2; } u2; struct U3 { Enums e; unsigned int i; char c; } u3; struct U4 { Enums e; unsigned int i; char c; int v1; } u4; struct U5 { Enums e; unsigned int i; char c; int v1; int v2; } u5; } myUnion </code></pre> <p>I'm so confused with this whole idea of Union in C++. What does this "myUnion" look like in memory?? I know that the data share the same memory block, but how? What is the size of "myUnion"? If it is the size of "u5" then how is the data allocated in this block of memory??</p> http://stackoverflow.com/questions/1770426/problem-with-quadtree-union 2 problem with quadTree & union Mat 2009-11-20T13:29:03Z 2009-11-20T23:37:44Z <p>hi!</p> <p>i have the following quadtree-like structure, in which each cell can either be a inner node or a leaf. if it is a leaf, it can store a color. if it is a inner node, it stores pointers to four children (which can be either leaf or inner node):</p> <pre><code>class RenderBucketCell{ public: RenderBucketCell(); RenderBucketCell(float R, float G, float B, float A, unsigned short X, unsigned short Y); ~RenderBucketCell(); void split(); void collapse(); bool isLeaf; RenderBucketCell* neighbours[8]; unsigned short x; unsigned short y; union{ struct{ float r; float g; float b; float a; }; struct{ RenderBucketCell* children[4]; }; }; }; </code></pre> <p>if the cell is is an inner node, then it doesn't need to store a color. if it's a leaf, then it doesn't need to store pointers to children. therefore the color and the children shall share the same memory (union)</p> <p>there is the function split() which transforms a leaf into a inner node and creates for children (leafs) with the same color the current cell has at the moment:</p> <pre><code>void RenderBucketCell::split(){ isLeaf=false; float rt = r;//make backups of the values before setting the children (union) float gt = g; float bt = b; float at = a; unsigned short xt2 = x*2; unsigned short yt2 = y*2; children[0] = new RenderBucketCell(rt,gt,bt,at, xt2, yt2); children[1] = new RenderBucketCell(rt,gt,bt,at, xt2+1, yt2); children[2] = new RenderBucketCell(rt,gt,bt,at, xt2, yt2+1); children[3] = new RenderBucketCell(rt,gt,bt,at, xt2+1, yt2+1); } </code></pre> <p>now i'm debugging the function split(). i set a debug point on the line</p> <pre><code>children[0] = new RenderBucketCell(rt,gt,bt,at, xt2, yt2); </code></pre> <p>so now: the debugger stops at this line and i observe the membervalues. i do a procedurestep, such that the line gets executed (the instruction cursor is now on the next line). After the line has been executed, the pointervalue of children[0] is still the same! instead, the pointervalue of children[2] has changed (along with the float value b)</p> <p>can someone explain me this behaviour?? what am i doing wrong?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1749459/why-does-my-object-take-up-64-bytes-and-not-32 1 Why does my object take up 64 bytes and not 32? Sorlaize 2009-11-17T15:01:52Z 2009-11-17T17:45:56Z <p>I have a class that goes like this:</p> <pre><code>class myType { union { float data[4]; other_vector4_type v } ; typedef union { float data[4]; other_vector4_type v } myType-internal_t; &lt;various member functions, operator overloads&gt; } </code></pre> <p>Now I want to use this type in my vertex buffer, but the <code>sizeof()</code> isn't as expected. I aligned the class to 16 bytes.</p> <p><code>sizeof(myType)</code> yields 64.</p> <p><code>sizeof(myType::myType-internal_t)</code> yields 32.</p> <p>I've read quite a few articles on data alignment but I don't know where I'm using extra data. I tried stripping out the custom constructor but it remains the same, swapping the class keyword for <code>struct</code> doesn't change it either (I don't understand what it's for, as it happens!)</p> <p>This is annoying, I'll use the internal type for now since I won't be touching the data often, but it would be great to have the class work like I want.</p> http://stackoverflow.com/questions/1739353/merge-join-2-jquery-sets 0 Merge/Join 2 jQuery sets alex 2009-11-15T23:55:21Z 2009-11-17T12:24:26Z <p>Look at this code for example</p> <pre><code>$div = $('#my div'); $ul = $('#somewhere ul'); </code></pre> <p>How can I perform a jQuery method on both of them? For example, would this work? What is best practice here?</p> <pre><code>$($div, $ul).addClass('my-new-class'); </code></pre> <p>Wouldn't that search $div under a context of $ul ?</p> <p>Thank you</p> http://stackoverflow.com/questions/1736017/getting-union-intersection-or-difference-of-sets-in-c 0 Getting Union, Intersection, or Difference of Sets in C++ Alex319 2009-11-14T23:47:14Z 2009-11-15T02:34:36Z <p>I have a couple questions about how to use C++ sets (std::set)</p> <ol> <li><p>Is there a way to get the union, intersection, or difference of two C++ sets? (It's pretty easy to write my own functionto do that but I wanted to know if there was a built in function for it)</p></li> <li><p>Can C++ sets be used as keys in a map?</p></li> </ol> http://stackoverflow.com/questions/1164284/trying-to-speed-up-a-sqlite-union-query 0 Trying to speed up a SQLITE UNION QUERY unknown (google) 2009-07-22T10:15:32Z 2009-11-14T11:00:04Z <p>I have the below SQLITE code</p> <pre><code>SELECT x.t, CASE WHEN S.Status='A' AND M.Nomorebets=0 THEN S.PriceText ELSE '-' END AS Show_Price FROM sb_Market M LEFT OUTER JOIN (select 2010 t union select 2020 t union select 2030 t union select 2040 t union select 2050 t union select 2060 t union select 2070 t ) as x LEFT OUTER JOIN sb_Selection S ON S.MeetingId=M.MeetingId AND S.EventId=M.EventId AND S.MarketId=M.MarketId AND x.t=S.team WHERE M.meetingid=8051 AND M.eventid=3 AND M.Name='Correct Score' </code></pre> <p>With the current interface restrictions, I have to use the above code to ensure that if one selection is missing, that a '-' appears.</p> <p>Some feed would be something like the following</p> <pre> SelectionId Name Team Status PriceText =================================== 1 Barney 2010 A 10 2 Jim 2020 A 5 3 Matt 2030 A 6 4 John 2040 A 8 5 Paul 2050 A 15/2 6 Frank 2060 S 10/11 7 Tom 2070 A 15 </pre> <p>Is using the above SQL code the quickest &amp; efficient??</p> <p>Please advise of anything that could help. Messages with updates would be preferable.</p> http://stackoverflow.com/questions/1100246/sql-ms-sql-server-v-8-union-problem -1 SQL MS SQL Server V.8 UNION problem flavour404 2009-07-08T20:01:11Z 2009-11-13T20:20:22Z <p>Hi,</p> <p>I am using this query:</p> <pre><code>SELECT DISTINCT pat.PublicationID FROM dbo.PubAdvTransData AS pat INNER JOIN dbo.PubAdvertiser AS pa ON pat.AdvTransID = pa.AdvTransID WHERE (pa.AdvertiserID = 31331) AND (pat.LastAdDate &gt; 7 / 1 / 2009) ORDER BY pat.PublicationID </code></pre> <p>And it returns 0 results. What I am trying to do is add in a union with my PublicationsAreaBuy table, which contains a publicationID and an ABID (area buy id). What I am trying to do is if the above query returns a publicationID that is in the area buy table then I need to include (which is why I was using the union) the area buy id as a publication id.</p> <p>This was my last attempt but again it returns 1 result whether the top query returns a result or not... my mind has gone completely blank on this one!</p> <pre><code>SELECT DISTINCT pat.PublicationID FROM dbo.PubAdvTransData AS pat INNER JOIN dbo.PubAdvertiser AS pa ON pat.AdvTransID = pa.AdvTransID WHERE (pat.LastAdDate &gt; 7 / 1 / 2009) AND (pat.PublicationID = 29171) UNION SELECT AreaBuy.AreaBuyID AS PublicationID FROM AreaBuy INNER JOIN PublicationAreaBuy ON AreaBuy.AreaBuyID = PublicationAreaBuy.AreaBuyID INNER JOIN dbo.PubAdvertiser AS PubAdvertiser_1 ON PubAdvertiser_1.PublicationID = PublicationAreaBuy.PublicationID ORDER BY pat.PublicationID </code></pre> http://stackoverflow.com/questions/1711167/net-class-generation-from-xsd-with-union 0 .Net class generation from XSD with union mklinker 2009-11-10T21:04:16Z 2009-11-12T14:49:54Z <p>I've been working to create classes representing the HR-Xml 3 spec for the stand-along packages related to Screening. I've had a couple of problems, but currently I believe the main problem is the lack of support within xsd.exe for the xsd:union statement.</p> <blockquote> <p>When Xsd.exe encounters a simple type defined by union, it ignores the definition and uses the built-in string data type in its place. <br> From - <a href="http://msdn.microsoft.com/en-us/library/bc57azyw%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bc57azyw%28VS.85%29.aspx</a></p> </blockquote> <p>The only solution I've seen on various forums and newsgroups is to restructure the XSD to not use the union? However, even with the small subset of entities I need, the number of union statements approaches 100. Perhaps this is the only solution?</p> <p>I've been stuck on this for a number of days now and haven't been able to find anything real useful, besides "nope, that doesn't work". In the end, I <strong>need</strong> to make it work somehow. Any suggestions for tools, redesigns, converters, anything that can get me these classes! I've even started to think about generating Java classes and then converting those to C#... I'm at a loss </p> <p>Thanks in advance! I certainly hope there's some solution to this!</p> http://stackoverflow.com/questions/1602899/what-is-the-difference-between-structures-containing-bool-vs-uint-when-using-pinv 1 What is the difference between structures containing bool vs uint when using PInvoke? csharptest.net 2009-10-21T19:00:21Z 2009-11-09T21:28:24Z <p>Ok, I'm now very confused. <a href="http://stackoverflow.com/questions/1602487">After my last question</a> had several people comment about changing bool to uint I verified they are the same size by:</p> <pre><code> Console.WriteLine("sizeof bool = {0}", Marshal.SizeOf(typeof(bool))); Console.WriteLine("sizeof uint = {0}", Marshal.SizeOf(typeof(uint))); </code></pre> <p>Which of course prints:</p> <pre><code>sizeof bool = 4 sizeof uint = 4 </code></pre> <p>That said, I then broke down and gave their suggestions a try anyway... Changing a single bool inside a structure to a uint. What I can't figure out for the life of me is why this made it work...</p> <p>So this works:</p> <pre><code>[StructLayout(LayoutKind.Sequential)] public struct KEY_EVENT_RECORD { public bool bKeyDown; public short wRepeatCount; public short wVirtualKeyCode; public short wVirtualScanCode; public char UnicodeChar; public int dwControlKeyState; } </code></pre> <p>When used in this structure:</p> <pre><code>[StructLayout(LayoutKind.Explicit)] public struct INPUT_RECORD { [FieldOffset(0)] public short EventType; [FieldOffset(4)] public KEY_EVENT_RECORD KeyEvent; } </code></pre> <p>But in this structure it breaks:</p> <pre><code>[StructLayout(LayoutKind.Explicit)] public struct INPUT_RECORD { [FieldOffset(0)] public short EventType; [FieldOffset(4)] public KEY_EVENT_RECORD KeyEvent; [FieldOffset(4)] public MOUSE_EVENT_RECORD MouseEvent; [FieldOffset(4)] public WINDOW_BUFFER_SIZE_RECORD WindowBufferSizeEvent; [FieldOffset(4)] public MENU_EVENT_RECORD MenuEvent; [FieldOffset(4)] public FOCUS_EVENT_RECORD FocusEvent; } </code></pre> <p>Yet when I change bool bKeyDown to uint in the <code>KEY_EVENT_RECORD</code> structure it starts working again... </p> <p><strong>Can someone please explain this behavior?</strong></p> <p>I really would like to know the why of it so that I can avoid this undocumented feature (aka bug) in the future.</p> http://stackoverflow.com/questions/1700936/sql-join-optimalization-get-rid-of-union 0 SQL join optimalization (get rid of UNION) Zsolt Botykai 2009-11-09T13:17:58Z 2009-11-09T13:51:31Z <p>Hi,</p> <p>1st disclaimers:</p> <ol> <li>I'm not a programmer, never was</li> <li>had never been taught "higher" math</li> <li>despite the upper statements sometimes I have to work with SQL.</li> </ol> <p>Now I need to create a <code>view</code> from a <code>select</code> of my colleagues (who had used four <code>union</code>s looked like he do not know how to use <code>or</code> in the where part...), and now I'm here.</p> <p>Is there a simple readable way of getting rid of the last <code>UNION</code> while getting the same result set?</p> <p>Thanks in advance!</p> <pre><code>select a.prodt_cde, b.ccy, a.int_tabno, b.start_dn, b.end_dn, b.frte_term, b.base_id, b.ptvar, c.base_rate, c.desc_shnm, c.rel_day from linc.systwodb_ptico a, linc.systwodb_ptlfo b, linc.systwodb_baso c where a.prodt_cde in (select prodt_cde from linc.systwodb_ptmao where prodt_clas in (select prod_clas from linc.systwodb_ramto where main_type in (71, 72)) and allow_dif in ('Y', 'M')) and a.int_type = 'LS' and a.int_tabno = b.int_tabno and b.ccy in (select ccy from linc.systwodb_ptmao where prodt_cde = a.prodt_cde) and b.base_id &lt;&gt; 0 and b.base_id = c.base_id and b.ccy = c.ccy and ((b.end_dn = 0 and b.start_dn &lt;= c.rel_day) or (b.end_dn &lt;&gt; 0 and b.start_dn &lt;= c.rel_day and b.end_dn &gt;= c.rel_day) or (b.start_dn &gt; c.rel_day and not exists (select * from linc.systwodb_baso where base_id = b.base_id and ccy = b.ccy and rel_day = b.start_dn) and c.rel_day = (select NVL(max(rel_day), 0) from linc.systwodb_baso where base_id = b.base_id and ccy = b.ccy and rel_day &lt; b.start_dn))) -- 4. PTLFO.BASE_ID = 0, or cannot find BASO before PTLFO.START_DN union select a.prodt_cde, b.ccy, a.int_tabno, b.start_dn, b.end_dn, b.frte_term, b.base_id, b.ptvar, 0 as base_rate, ' ' as desc_shnm, 0 as rel_day from linc.systwodb_ptico a, linc.systwodb_ptlfo b --, linc.systwodb_baso c where a.prodt_cde in (select prodt_cde from linc.systwodb_ptmao where prodt_clas in (select prod_clas from linc.systwodb_ramto where main_type in (71, 72)) and allow_dif in ('Y', 'M')) and a.int_type = 'LS' and a.int_tabno = b.int_tabno and b.ccy in (select ccy from linc.systwodb_ptmao where prodt_cde = a.prodt_cde) and (b.base_id = 0 or not exists (select * from linc.systwodb_baso where base_id = b.base_id and ccy = b.ccy and rel_day &lt;= b.start_dn)) ; </code></pre> http://stackoverflow.com/questions/1677538/advanced-indexing-involving-or-ed-conditions-pgsql 3 Advanced indexing involving OR-ed conditions (pgsql) Matt Huggins 2009-11-05T00:05:01Z 2009-11-06T15:39:23Z <p>I'm starting to get a much better grasp on PostgreSQL indexing, but I've run into an issue with the OR conditional, where I don't know how to go about optimizing my indexes for a faster query.</p> <p>I have 6 conditionals that, when run individually, appear to have a small cost. Here's an example of the trimmed queries, including query plan calculated times.</p> <p>(<em>NOTE: I haven't output the actual query plans for these queries below for the sake of reducing complexity, but they all use <code>nested loop left joins</code> and <code>index scans</code> as I would expect with proper indexing. If necessary, I can include the query plans for a more meaningful response.</em>)</p> <pre><code>EXPLAIN ANALYZE SELECT t1.*, t2.*, t3.* FROM t1 LEFT JOIN t2 on t2.id = t1.t2_id LEFT JOIN t3 ON t3.id = t1.t3_id WHERE (conditions1) LIMIT 10; QUERY PLAN ------------------------------------------------------------------------------------- Limit (cost=0.25..46.69 rows=1 width=171) (actual time=0.031..0.031 rows=0 loops=1) EXPLAIN ANALYZE SELECT t1.*, t2.*, t3.* FROM t1 LEFT JOIN t2 on t2.id = t1.t2_id LEFT JOIN t3 ON t3.id = t1.t3_id WHERE (conditions2) LIMIT 10; QUERY PLAN ------------------------------------------------------------------------------------- Limit (cost=0.76..18.97 rows=1 width=171) (actual time=14.764..14.764 rows=0 loops=1) /* snip */ EXPLAIN ANALYZE SELECT t1.*, t2.*, t3.* FROM t1 LEFT JOIN t2 on t2.id = t1.t2_id LEFT JOIN t3 ON t3.id = t1.t3_id WHERE (conditions6) LIMIT 10; QUERY PLAN ------------------------------------------------------------------------------------- Limit (cost=0.51..24.48 rows=1 width=171) (actual time=0.252..5.332 rows=10 loops=1) </code></pre> <p>My problem is that I want to join these 6 conditions together with OR operators, making each condition a possibility. My combined query appears more like this:</p> <pre><code>EXPLAIN ANALYZE SELECT t1.*, t2.*, t3.* FROM t1 LEFT JOIN t2 on t2.id = t1.t2_id LEFT JOIN t3 ON t3.id = t1.t3_id WHERE (conditions1 OR conditions2 OR conditions3 OR conditions4 OR conditions5 OR conditions 6) LIMIT 10; </code></pre> <p>Unfortunately, this results in a MASSIVE increase on the query plan, which no longer seems to be using my indexes (instead, choosing to do a <code>hash left join</code> rather than a <code>nested loop left join</code>, and performing various <code>sequence scans</code> over the previously used <code>index scans</code>).</p> <pre><code>Limit (cost=142.62..510755.78 rows=1 width=171) (actual time=30.591..30.986 rows=10 loops=1) </code></pre> <p>Is there anything special I should know about indexing with regards to OR-ed conditions that would improve my final query?</p> <p><strong>UPDATE</strong>: If I use a UNION for each individual SELECT, that seems to speed up the query. However, will that prevent me from ordering my results if I choose to in the future? Here's what I did to speed up the query via UNION:</p> <pre><code>EXPLAIN ANALYZE SELECT t1.*, t2.*, t3.* FROM t1 LEFT JOIN t2 on t2.id = t1.t2_id LEFT JOIN t3 ON t3.id = t1.t3_id WHERE (conditions1) UNION SELECT t1.*, t2.*, t3.* FROM t1 LEFT JOIN t2 on t2.id = t1.t2_id LEFT JOIN t3 ON t3.id = t1.t3_id WHERE (conditions2) UNION SELECT t1.*, t2.*, t3.* FROM t1 LEFT JOIN t2 on t2.id = t1.t2_id LEFT JOIN t3 ON t3.id = t1.t3_id WHERE (conditions3) UNION SELECT t1.*, t2.*, t3.* FROM t1 LEFT JOIN t2 on t2.id = t1.t2_id LEFT JOIN t3 ON t3.id = t1.t3_id WHERE (conditions4) UNION SELECT t1.*, t2.*, t3.* FROM t1 LEFT JOIN t2 on t2.id = t1.t2_id LEFT JOIN t3 ON t3.id = t1.t3_id WHERE (conditions5) UNION SELECT t1.*, t2.*, t3.* FROM t1 LEFT JOIN t2 on t2.id = t1.t2_id LEFT JOIN t3 ON t3.id = t1.t3_id WHERE (conditions6) LIMIT 10; QUERY PLAN ------------------------------------------------------------------------------------- Limit (cost=219.14..219.49 rows=6 width=171) (actual time=125.579..125.653 rows=10 loops=1) </code></pre> http://stackoverflow.com/questions/724261/unions-in-c 2 Unions in C RBA 2009-04-07T05:39:50Z 2009-11-05T05:03:37Z <p>The idea behind this question is to understand the deeper concepts of using union and using it in different way so as to save memory.. My question to all is--</p> <pre><code>lets say there is structure struct strt { float f; char c; int a; } and the same structure represented in union union unin { float f; char c; int a; } </code></pre> <blockquote> <p>Now my question is,,</p> <p>if i allocate values to structure members one after another and then print them, it gets printed.. </p> <p>But in case of union it doesn't happen.. Some overwriting is being done..</p> <p>So i need to find out a method which can store the values of f,c,a using union and then i can print the same. (Apply any operations or anything..) but i am in search of this technique.. Can anybody out there guide or any idea...</p> </blockquote> http://stackoverflow.com/questions/1520599/what-kind-of-sql-join-is-this 0 What kind of SQL join is this? mvrak 2009-10-05T14:56:15Z 2009-11-02T02:10:49Z <p>Say for some reason I have employees in two separate tables, employee1 and employee2</p> <p>I just want to add them together, as if they are stacked on top of each other.</p> <p>something like:</p> <pre><code>select all from employee1 and employee2 where name = bubba </code></pre> <p>i know im generalizing, this will be in postgres eventually so if there are any specifics there i should watch for thanks</p> http://stackoverflow.com/questions/1604815/how-to-use-group-by-with-union-in-t-sql 0 how to use group by with union in t-sql Yousui 2009-10-22T03:08:27Z 2009-10-29T05:10:27Z <p>hi all, how can i using group by with union in t-sql? i want to group by the first column of a result of union, i wrote the following sql but it doesn't work. i just don't know how to reference the specified column (in this case is 1) of the union result. great thanks.</p> <pre><code>SELECT * FROM ( SELECT a.id , a.time FROM dbo.a UNION SELECT b.id , b.time FROM dbo.b ) GROUP BY 1 </code></pre> http://stackoverflow.com/questions/1605619/mysql-usage-of-indices-in-union-subselects 1 MySQL: Usage of indices in UNION subselects jrudolph 2009-10-22T07:51:30Z 2009-10-22T08:59:29Z <p>In <code>MySQL 5.0.75-0ubuntu10.2</code> I've got a fixed table layout like that:</p> <p>Table <code>parent</code> with an id Table <code>parent2</code> with an id Table <code>children1</code> with a parentId</p> <pre><code>CREATE TABLE `Parent` ( `id` int(11) NOT NULL auto_increment, `name` varchar(200) default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB CREATE TABLE `Parent2` ( `id` int(11) NOT NULL auto_increment, `name` varchar(200) default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB CREATE TABLE `Children1` ( `id` int(11) NOT NULL auto_increment, `parentId` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `parent` (`parentId`) ) ENGINE=InnoDB </code></pre> <p>A children has a parent in one of the tables <code>Parent</code> or <code>Parent2</code>. When I need to get a children I use a query like that:</p> <pre><code>select * from Children1 c inner join ( select id as parentId from Parent union select id as parentId from Parent2 ) p on p.parentId = c.parentId </code></pre> <p><em>Explaining</em> this query yields:</p> <pre><code>+----+--------------+------------+-------+---------------+---------+---------+------+------+-----------------------------------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+--------------+------------+-------+---------------+---------+---------+------+------+-----------------------------------------------------+ | 1 | PRIMARY | NULL | NULL | NULL | NULL | NULL | NULL | NULL | Impossible WHERE noticed after reading const tables | | 2 | DERIVED | Parent | index | NULL | PRIMARY | 4 | NULL | 1 | Using index | | 3 | UNION | Parent2 | index | NULL | PRIMARY | 4 | NULL | 1 | Using index | | NULL | UNION RESULT | &lt;union2,3&gt; | ALL | NULL | NULL | NULL | NULL | NULL | | +----+--------------+------------+-------+---------------+---------+---------+------+------+-----------------------------------------------------+ 4 rows in set (0.00 sec) </code></pre> <p>which is reasonable given the layout.</p> <p>Now the problem: The previous query is somewhat useless, since it returns no columns from the parent elements. In the moment I add more columns to the inner query no index will be used anymore:</p> <pre><code>mysql&gt; explain select * from Children1 c inner join ( select id as parentId,name from Parent union select id as parentId,name from Parent2 ) p on p.parentId = c.parentId; +----+--------------+------------+------+---------------+------+---------+------+------+-----------------------------------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+--------------+------------+------+---------------+------+---------+------+------+-----------------------------------------------------+ | 1 | PRIMARY | NULL | NULL | NULL | NULL | NULL | NULL | NULL | Impossible WHERE noticed after reading const tables | | 2 | DERIVED | Parent | ALL | NULL | NULL | NULL | NULL | 1 | | | 3 | UNION | Parent2 | ALL | NULL | NULL | NULL | NULL | 1 | | | NULL | UNION RESULT | &lt;union2,3&gt; | ALL | NULL | NULL | NULL | NULL | NULL | | +----+--------------+------------+------+---------------+------+---------+------+------+-----------------------------------------------------+ 4 rows in set (0.00 sec) </code></pre> <p>Can anyone explain why the (PRIMARY) indices are not used any more? Is there a workaround for this problem if possible without having to change the DB layout?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1363342/linq-and-nullable-key-relationships-affecting-union-operation 1 Linq and nullable key relationships affecting UNION operation David 2009-09-01T16:09:57Z 2009-10-22T07:41:19Z <p>Here is &#97;n ex&#97;mple:</p> <p>Lets s&#97;y I h&#97;ve 3 t&#97;bles, Countries, People &#97;nd Cities. City records h&#97;ve &#97; non-null&#97;ble foreign key field identifying &#97; country. People records h&#97;ve &#97; <em>null&#97;ble</em> foreign key field identifying &#97; country - they m&#97;y be from &#97;n E&#97;stern Europe&#97;n country th&#97;t no longer exists.</p> <p>I w&#97;nt to cre&#97;te &#97; combined list of countries from &#97; list of people &#97;nd &#97; list of cities:</p> <pre><code>var people = dbContext.People.Where(...); var cities = dbContext.Cities.Where(...); var countries = cities.Select(c=&gt;c.Country); countries = countries.Union(people.Select(p=&gt;p.Country)); </code></pre> <p>The problem comes from th&#97;t l&#97;st line. Since not &#97;ll people records h&#97;ve &#97; m&#97;tching country record, LINQ is (correctly) cre&#97;ting &#97; query th&#97;t ensures there will be &#97; row filled with nulls for every countryless person. With &#97; debugger it &#97;ppe&#97;rs this is done by cre&#97;ting &#97;n entr&#97; dummy column c&#97;ll "[test]"</p> <pre><code>SELECT [t2].[test], [t2].[CountryID], [t2].[Name] FROM [dbo].[People] AS [t0] LEFT OUTER JOIN ( SELECT 1 AS [test], [t1].[CountryID], [t1].[Name] FROM [dbo].[Countries] AS [t1] ) AS [t2] ON [t2].[CountryID] = [t0].[CountryID] </code></pre> <p>While th&#97;t extr&#97; column [test] is silently removed (the result is identified &#97;s IQuery&#97;ble) on the code side, on the SQL side it is most definitely there, &#97;nd is resulting in the query being rejected when I union it with &#97; norm&#97;l Country selection st&#97;tement.</p> <p>In the fin&#97;l c&#97;se I don't w&#97;nt or need the extr&#97; dummy rows - in the full progr&#97;m I've &#97;lre&#97;dy included <code>people.Where(p=&gt;p.CountryID != null).Select(p=&gt;p.Country)</code> &#97;s well &#97;s trying <code>p=&gt;Country != null</code>.</p> <p>However Linq does not recognize th&#97;t this will prevent the null rows &#97;nd so still inserts the test column. &#97;s the test column is invisible, I h&#97;ve no obvious w&#97;y of "removing" it from wh&#97;t is otherwise reported &#97;s &#97;n IQuery&#97;ble object. The end result is the run time error &#97;bout my UNION construct h&#97;ving &#97;n unequ&#97;l number of columns.</p> <p>How c&#97;n I force &#97;n INNER JOIN on on my null&#97;ble rel&#97;tionship, or otherwise m&#97;ke the union work &#97;s I w&#97;nt to by excluding the invisible test column?</p> http://stackoverflow.com/questions/1602487/what-am-i-doing-wrong-with-this-use-of-structlayout-layoutkind-explicit-when-c 1 What am I doing wrong with this use of StructLayout( LayoutKind.Explicit ) when calling a PInvoke struct with union? csharptest.net 2009-10-21T17:59:00Z 2009-10-21T18:36:43Z <p>The following is a complete program. It works fine as long as you don't uncomment the '#define BROKEN' at the top. The break is due to a PInvoke failing to marshal a union correctly. The <code>INPUT_RECORD</code> structure in question has a number of substructures that might be used depending on the value in EventType. </p> <p>What I don't understand is that when I define only the single child structure of <code>KEY_EVENT_RECORD</code> it works with the explicit declaration at offset 4. But when I add the other structures at the same offset the structure's content get's totally hosed.</p> <pre><code>//UNCOMMENT THIS LINE TO BREAK IT: //#define BROKEN using System; using System.Runtime.InteropServices; class ConIOBroken { static void Main() { int nRead = 0; IntPtr handle = GetStdHandle(-10 /*STD_INPUT_HANDLE*/); Console.Write("Press the letter: 'a': "); INPUT_RECORD record = new INPUT_RECORD(); do { ReadConsoleInputW(handle, ref record, 1, ref nRead); } while (record.EventType != 0x0001/*KEY_EVENT*/); Assert.AreEqual((short)0x0001, record.EventType); Assert.AreEqual(true, record.KeyEvent.bKeyDown); Assert.AreEqual(0x00000000, record.KeyEvent.dwControlKeyState &amp; ~0x00000020);//strip num-lock and test Assert.AreEqual('a', record.KeyEvent.UnicodeChar); Assert.AreEqual((short)0x0001, record.KeyEvent.wRepeatCount); Assert.AreEqual((short)0x0041, record.KeyEvent.wVirtualKeyCode); Assert.AreEqual((short)0x001e, record.KeyEvent.wVirtualScanCode); } static class Assert { public static void AreEqual(object x, object y) { if (!x.Equals(y)) throw new ApplicationException(); } } [DllImport("Kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true)] public static extern IntPtr GetStdHandle(int nStdHandle); [DllImport("Kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true)] public static extern bool ReadConsoleInputW(IntPtr hConsoleInput, ref INPUT_RECORD lpBuffer, int nLength, ref int lpNumberOfEventsRead); [StructLayout(LayoutKind.Explicit)] public struct INPUT_RECORD { [FieldOffset(0)] public short EventType; //union { [FieldOffset(4)] public KEY_EVENT_RECORD KeyEvent; #if BROKEN [FieldOffset(4)] public MOUSE_EVENT_RECORD MouseEvent; [FieldOffset(4)] public WINDOW_BUFFER_SIZE_RECORD WindowBufferSizeEvent; [FieldOffset(4)] public MENU_EVENT_RECORD MenuEvent; [FieldOffset(4)] public FOCUS_EVENT_RECORD FocusEvent; //} #endif } [StructLayout(LayoutKind.Sequential)] public struct KEY_EVENT_RECORD { public bool bKeyDown; public short wRepeatCount; public short wVirtualKeyCode; public short wVirtualScanCode; public char UnicodeChar; public int dwControlKeyState; } [StructLayout(LayoutKind.Sequential)] public struct MOUSE_EVENT_RECORD { public COORD dwMousePosition; public int dwButtonState; public int dwControlKeyState; public int dwEventFlags; }; [StructLayout(LayoutKind.Sequential)] public struct WINDOW_BUFFER_SIZE_RECORD { public COORD dwSize; } [StructLayout(LayoutKind.Sequential)] public struct MENU_EVENT_RECORD { public int dwCommandId; } [StructLayout(LayoutKind.Sequential)] public struct FOCUS_EVENT_RECORD { public bool bSetFocus; } [StructLayout(LayoutKind.Sequential)] public struct COORD { public short X; public short Y; } } </code></pre> <p><strong>UPDATE:</strong></p> <p>For those worried about the struct declarations themselves:</p> <ol> <li>bool is treated as a 32-bit value</li> <li>the reason for offset(4) on the data is to allow for the 32-bit structure alignment which prevents the union from beginning at offset 2.</li> </ol> <p>Again, my problem isn't making PInvoke work at all, it's trying to figure out why these additional structures (supposedly at the same offset) are fowling up the data by simply adding them.</p> http://stackoverflow.com/questions/1575355/portability-concerns-on-c-struct-union 3 Portability concerns on C struct/union ntd 2009-10-15T21:59:05Z 2009-10-20T00:20:32Z <p>Supposing I have the following type from an external library:</p> <pre><code>union foreign_t { struct { enum enum_t an_enum; int an_int; } header; struct { double x, y; } point; }; </code></pre> <p>is it safe to assume the following code fragment will work as expected on different platforms and with different compilers?</p> <pre><code>struct pair_t { double x, y; }; union foreign_t foreign; struct pair_t *p_pair; p_pair = (struct pair_t *) &amp;foreign; p_pair-&gt;x = 1234; p_pair-&gt;y = 4321; /* Expected result: (1234, 4321) or something like that */ printf("(%lf, %lf)", foreign.point.x, foreign.point.y); </code></pre> <p><hr /></p> <h3>EDIT:</h3> <p>Following the strict aliasing suggestion I made the following test:</p> <pre><code>#include &lt;stdint.h&gt; #include &lt;stdio.h&gt; int main() { uint16_t word = 0xabcd; uint8_t tmp; struct { uint8_t low; uint8_t high; } *byte = (void *) &amp;word; tmp = byte-&gt;low; byte-&gt;low = byte-&gt;high; byte-&gt;high = tmp; printf("%x\n", word); return 0; } </code></pre> <p>The above apparently innocent piece of code is not reliable:</p> <pre><code>$ gcc -O3 -fno-strict-aliasing -otest test.c $ ./test cdab $ gcc -O3 -fstrict-aliasing -otest test.c $ ./test abcd </code></pre> <p>No peace for developers...</p> http://stackoverflow.com/questions/1584589/rails-union-hack-how-to-pull-two-different-queries-together 3 rails union hack, how to pull two different queries together holden 2009-10-18T10:54:41Z 2009-10-19T08:50:41Z <p>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.</p> <p>Table looks like:</p> <pre><code>Country City Germany Aachen USA Amarillo USA Austin </code></pre> <p>Result:</p> <pre><code>Keyword Sideinfo Aachen Germany USA Country Austin USA Germany Country </code></pre> <p>Basically I'm wondering if there is a more concise way to do this because I had to use two separate queries then add them together, sort them, etc. (which works fine):</p> <pre><code> def self.ajax(search) countries = Location.find(:all, :select=&gt; 'country AS keyword, "Country" AS sideinfo', :joins =&gt; :hotels, :conditions =&gt; [ 'hotels.email IS NOT NULL AND country LIKE ?', "#{search}%" ], :group =&gt; :country ) cities = Location.find(:all, :select=&gt; 'city AS keyword, country AS sideinfo', :joins =&gt; :hotels, :conditions =&gt; [ 'hotels.email IS NOT NULL AND city LIKE ?', "#{search}%" ], :group =&gt; :city ) out = cities + countries out = out.sort { |a,b| a.keyword &lt;=&gt; b.keyword } out.first(8) end </code></pre> <p>I couldn't find any information on how to unions using ActiveRecord...</p> http://stackoverflow.com/questions/1554867/index-on-union-query 2 Index on UNION query? mlebrun15 2009-10-12T14:18:25Z 2009-10-12T14:49:25Z <p>i've got this union query:</p> <pre><code>(SELECT INSTALLER, INSTALLTIME, RESULT, JOBNUMBER, HONAME, ADDRESS, CITY, STATE, ZIP, NOTES, SMNOTES, '' as priority, PAFS, upsell, TERM, MMRUPGRADE, WARRANTY, EFT FROM ACCOUNTS WHERE INSTALLDATE = '$date' &amp;&amp; FUNDINGSTATUS !='DEAD') UNION (SELECT technician, servicetime, result, ID, Customername, address, city, state, zip, notes, board, priority, '', '', '', '', '', '' FROM service WHERE serviceday = '$date') ORDER BY INSTALLER, priority </code></pre> <p>i'm curious if putting an index on the date field will help speed up both queries? or will the fact that i use FUNDINGSTATUS in the first where clause will make that query not utilize the index?</p> http://stackoverflow.com/questions/1515877/sql-query-to-collect-entries-from-different-tables-need-an-alternate-to-union 0 SQL query to collect entries from different tables - need an alternate to UNION Ali 2009-10-04T08:04:52Z 2009-10-04T08:22:23Z <p>Hi guys, I'm running a sql query to get basic details from a number of tables. Sorted by the last update date field. Its terribly tricky and I'm thinking if there is an alternate to using the UNION clause instead...I'm working in PHP MYSQL.</p> <p>Actually I have a few tables containing news, articles, photos, events etc and need to collect all of them in one query to show a simple - whats newly added on the website kind of thing.</p> http://stackoverflow.com/questions/1503745/getting-rid-of-duplicate-results-in-mysql-query-when-using-union 0 Getting rid of duplicate results in MySQL query when using UNION Aistina 2009-10-01T12:43:23Z 2009-10-02T00:10:31Z <p>Hi everyone,</p> <p>I have a MySQL query to get items that have had recent activity. Basically users can post a review or add it to their wishlist, and I want to get all items that have either had a new review in the last x days, or was placed on someone's wishlist.</p> <p>The query goes a bit like this (slightly simplified):</p> <pre><code>SELECT items.*, reaction.timestamp AS date FROM items LEFT JOIN reactions ON reactions.item_id = items.id WHERE reactions.timestamp &gt; 1251806994 GROUP BY items.id UNION SELECT items.*, wishlists.timestamp AS date FROM items LEFT JOIN wishlist ON wishlists.item_id = items.id WHERE wishlists.timestamp &gt; 1251806994 GROUP BY items.id ORDER BY date DESC LIMIT 5 </code></pre> <p>This works, but when an item has been placed both on someone's wishlist <b>and</b> a review was posted, the item is returned twice. <code>UNION</code> removes duplicates normally, but because the <code>date</code> differs between the two rows, both rows are returned. Can I somehow tell MySQL to ignore the date when removing duplicate rows?</p> <p>I also tried doing something like this:</p> <pre><code>SELECT items.*, IF(wishlists.id IS NOT NULL, wishlists.timestamp, reactions.timestamp) AS date FROM items LEFT JOIN reactions ON reactions.item_id = items.id LEFT JOIN wishlist ON wishlists.item_id = items.id WHERE (wishlists.id IS NOT NULL AND wishlists.timestamp &gt; 1251806994) OR (reactions.id IS NOT NULL AND reactions.timestamp &gt; 1251806994) GROUP BY items.id ORDER BY date DESC LIMIT 5 </code></pre> <p>But that turned out to be insanely slow for some reason (took about half a minute).</p> http://stackoverflow.com/questions/1500043/combining-2-different-but-fairly-similar-tables 0 Combining 2 different but fairly similar tables Mitch 2009-09-30T19:00:28Z 2009-09-30T23:30:18Z <p>I have 2 tables that are similar but not the same so a union is not a possibility. I need to combine the tables bearing in mind there's about 40 columns where only 20 are common to both. Any ideas on the best approach?</p> <pre><code>Table1 ActivityCategory ActivityType Nationality Language --------------------------------------------------------- Communication Telephone French French Meeting Session British English Table2 ActivityCategory ActivityType Nationality Employment ----------------------------------------------------------- Communication Fax American Employed Combined Table ActivityCategory ActivityType Nationality Language Employment ---------------------------------------------------------------------- Communication Telephone French French Meeting Session British English Communication Fax American Employed </code></pre> http://stackoverflow.com/questions/1494353/how-do-i-select-one-parent-row-and-additional-rows-for-its-children-without-a-uni 2 How do I select one parent row and additional rows for its children without a UNION? Tim Santeford 2009-09-29T19:03:34Z 2009-09-30T15:22:08Z <p>I have a parent and child table and want to create a select statement that, given a parent id, returns a row for that parent and <strong>additional rows</strong> for every child. Doing a left join is not giving me a row for the parent by itself when one or more children exist. I know this can be done with a UNION but I'm looking for a solution that <strong>does not</strong> use a union statement. Is this possible? </p> <p>[Parent Table]</p> <pre><code>ID Name ------------- 1 | Bob </code></pre> <p>[Child Table]</p> <pre><code>ID ParentId Name ----------------------- 1 | 1 | Jim 2 | 1 | Ned </code></pre> <p>Query result I'm looking for:</p> <pre><code>Parent_Name Child_Name --------------------------- Bob | NULL &lt;- I need this null here Bob | Jim Bob | Ned </code></pre> http://stackoverflow.com/questions/870080/why-are-union-queries-so-slow-in-mysql 2 Why are UNION queries so slow in MySQL? Greg 2009-05-15T17:59:01Z 2009-09-16T10:08:29Z <p>When I optimize my 2 single queries to run in less than 0.02 seconds and then UNION them the resulting query takes over 1 second to run. Also, a UNION ALL takes longer than a UNION DISTINCT. I would assume allowing duplicates would make the query run faster and not slower. Am I really just better off running the 2 queries separately? I would prefer to use the UNION.</p> http://stackoverflow.com/questions/1431078/why-only-one-record-after-union 0 Why only one record after union? Shore 2009-09-16T05:16:20Z 2009-09-16T05:20:22Z <pre><code>mysql&gt; select count(id) total from applicants; +-------+ | total | +-------+ | 0 | +-------+ 1 row in set (0.00 sec) mysql&gt; select count(id) total from jobs; +-------+ | total | +-------+ | 0 | +-------+ 1 row in set (0.00 sec) mysql&gt; select count(id) total from applicants union select count(id) total from jobs; +-------+ | total | +-------+ | 0 | +-------+ 1 row in set (0.00 sec) mysql&gt; </code></pre> <p>Isn't there supposed to be two records with "0" as its value?</p> http://stackoverflow.com/questions/1418431/sql-cascade-union-and-join 0 SQL: cascade UNION and JOIN Lopoc 2009-09-13T18:08:17Z 2009-09-13T18:17:42Z <p>Hi</p> <p>I have a union opertaion between two tables</p> <p>SELECT <code>ID_1</code>, <code>name_1</code>, <code>surname_1</code>, FROM <code>T_ONE</code></p> <p>UNION</p> <p>SELECT <code>ID_2</code>, <code>name_2</code>, <code>surname_2</code> FROM <code>TABLE_2</code></p> <p>now I want to join the result of this JOIN operation with another one table or even with all TABLE_1.</p> <p>How can I handle this new table result of the UNION.</p> <p>for ex after the previous UNION:</p> <p>RIGHT JOIN <code>TABLE_3</code> ON <code>TABLE_3</code>.<code>ID_3</code> =<code>XXXXXXXXXXXXXXXXXXXX</code>.<code>ID_2</code></p> <p>I really do not know what I need to put instead of the XXXXXXXXXXXXXXXX to andle the new table generated by the UNION.</p> <p>thank</p>