0
votes
4answers
80 views
MySQL forbids me to make my colleague look like a moron - or how MySQL forgets table names in an order by statement in a select union
One of our new employees made a really bad piece of code, not completely working, SQL injection points and stuff like that, what's really annoying is that he's not going to fix it as it's "working". …
1
vote
6answers
95 views
How to dynamically create a union instance in c++?
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
2
votes
1answer
124 views
Questions about vector, union, and pointers in c++
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 …
3
votes
4answers
90 views
Good way to combine two List<T>s in .NET 2.0?
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 …
1
vote
4answers
97 views
what does union U look like in the memory?
enum Enums { k1, k2, k3, k4 };
union MYUnion {
struct U{
char P;
}u;
struct U0 {
char state;
} u0;
struct U1 {
Enums e;
char c;
…
2
votes
2answers
58 views
problem with quadTree & union
hi!
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 …
1
vote
6answers
272 views
Why does my object take up 64 bytes and not 32?
I have a class that goes like this:
class myType
{
union {
float data[4];
other_vector4_type v
} ;
typedef union {
float data[4];
other_vector4_type v
} …
0
votes
3answers
51 views
Merge/Join 2 jQuery sets
Look at this code for example
$div = $('#my div');
$ul = $('#somewhere ul');
How can I perform a jQuery method on both of them? For example, would this work? What is best practice here?
$($div, …
0
votes
3answers
108 views
Getting Union, Intersection, or Difference of Sets in C++
I have a couple questions about how to use C++ sets (std::set)
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 …
0
votes
1answer
140 views
Trying to speed up a SQLITE UNION QUERY
I have the below SQLITE 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 …
-1
votes
1answer
149 views
SQL MS SQL Server V.8 UNION problem
Hi,
I am using this query:
SELECT DISTINCT pat.PublicationID
FROM dbo.PubAdvTransData AS pat INNER JOIN
dbo.PubAdvertiser AS pa ON pat.AdvTransID = pa.AdvTransID
WHERE …
0
votes
2answers
34 views
.Net class generation from XSD with union
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 …
1
vote
3answers
69 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 = {0}", …
0
votes
1answer
86 views
SQL join optimalization (get rid of UNION)
Hi,
1st disclaimers:
I'm not a programmer, never was
had never been taught "higher" math
despite the upper statements sometimes I have to work with SQL.
Now I need to create a view from a select …
3
votes
2answers
46 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 faster query.
I have …
