2
votes
2answers
38 views
Advanced indexing involving OR-ed conditions (pgsql)
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 f …
3
votes
8answers
196 views
Portability concerns on C struct/union
Supposing I have the following type from an external library:
union foreign_t {
struct {
enum enum_t an_enum;
int an_int;
} header;
struct {
do …
1
vote
5answers
72 views
What am I doing wrong with this use of StructLayout( LayoutKind.Explicit ) when calling a PInvoke struct with union?
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 correc …
0
votes
3answers
59 views
how to use group by with union in t-sql
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 …
3
votes
2answers
75 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 t …
0
votes
9answers
148 views
What kind of SQL join is this?
Say for some reason I have employees in two separate tables, employee1 and employee2
I just want to add them together, as if they are stacked on top of each other.
something like …
1
vote
2answers
50 views
What is the difference between structures containing bool vs uint when using PInvoke?
Ok, I'm now very confused. After my last question had several people comment about changing bool to uint I verified they are the same size by:
Console.WriteLine("sizeof bool …
2
votes
3answers
59 views
Index on UNION query?
i've got this union query:
(SELECT INSTALLER, INSTALLTIME, RESULT, JOBNUMBER, HONAME, ADDRESS, CITY, STATE, ZIP, NOTES, SMNOTES, '' as priority, PAFS, upsell, TERM, MMRUPGRADE, WA …
1
vote
1answer
29 views
MySQL: Usage of indices in UNION subselects
In MySQL 5.0.75-0ubuntu10.2 I've got a fixed table layout like that:
Table parent with an id
Table parent2 with an id
Table children1 with a parentId
CREATE TABLE `Parent` (
` …
0
votes
3answers
130 views
Getting rid of duplicate results in MySQL query when using UNION
Hi everyone,
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 …
2
votes
3answers
114 views
How do I select one parent row and additional rows for its children without a UNION?
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 additional rows for every child. Doing a left join …
0
votes
3answers
43 views
Combining 2 different but fairly similar tables
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 t …
0
votes
4answers
73 views
SQL query to collect entries from different tables - need an alternate to UNION
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 t …
15
votes
9answers
416 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 simplic …
1
vote
1answer
41 views
Linq and nullable key relationships affecting UNION operation
Here is an example:
Lets say I have 3 tables, Countries, People and Cities. City records have a non-nullable foreign key field identifying a …
