Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
5answers
132 views

Problems getting LEFT OUTER JOIN to work

I thought I understood how left outer joins work, but I have a situation that is not working, and I'm not 100% sure if the way I have my query structured is incorrect, or if it's a data issue. For ...
15
votes
7answers
32k views

Linq to Entity with multiple left outer joins

I am trying to understand left outer joins in LINQ to Entity. For example I have the following 3 tables: Company, CompanyProduct, Product The CompanyProduct is linked to its two parent tables, ...
6
votes
3answers
188 views

Efficient alternative to Outer on sparse arrays in Mathematica?

Suppose I have two very large lists {a1, a2, …} and {b1, b2, …} where all ai and bj are large sparse arrays. For the sake of memory efficiency I store each list as one comprehensive sparse array. Now ...
5
votes
2answers
574 views

Left Outer Join not returning all records from primary table

When I do a left outer join, I expect to get all the records that the query would return prior to adding the joined table, but it is only returning records that match the joined table (i.e: no record ...
3
votes
2answers
76 views

How to make an inner class without putting the definition of inner class to parent class?

I'll write an header file,and it's very long.Since it will be too complicated,i don't want to put inner class definition in root class.I mean how can i make a class inner without writing it in root ...
3
votes
2answers
162 views

How to generalize outer to n dimensions?

The standard R expression outer(X, Y, f) evaluates to a matrix whose (i, j)-th entry has the value f(X[i], Y[j]). I would like to implement the function multi.outer, an n-dimensional generalization ...
3
votes
4answers
335 views

(self,left outer,right outer,full outer) join - real world examples

can you tell me simple real-world examples for (self,left outer,right outer,full outer) join?
3
votes
1answer
3k views

Hibernate default joining for nullable many-to-one

I have a hibernate mapping like this in a ProductDfn class @ManyToOne( fetch = FetchType.LAZY, optional = true ) @JoinColumn( name = "productTypeFk", nullable = true ) public ProductType ...
2
votes
2answers
31 views

Left outer join to a generated table?

Am I on completely the wrong tack ? I want to do a left outer join to a query generated from 2 tables , but i keep getting errors. Do I need a different approach? t1: ID, Surname,Firstname t2: ...
2
votes
1answer
83 views

Outer product with dates

Given a vector of datetime values, I needed to create a data.frame containing datetimes at 0:10 hours past each original datetime - the first column 0 hours past, the second column 1 hour past, etc. ...
2
votes
2answers
352 views

C# Outer Apply in LINQ

How can I achieve Outer Apply in LINQ? I'm having a bit of a problem. Here's the SQL Query I'm using. SELECT u.masterID ,u.user ,h.created FROM dbo.Users u OUTER APPLY (SELECT TOP 1 * ...
2
votes
3answers
898 views

Replace returned null values in LEFT OUTER JOIN

SELECT WO_BreakerRail.ID, indRailType.RailType, indRailType.RailCode, WO_BreakerRail.CreatedPieces, WO_BreakerRail.OutsideSource, WO_BreakerRail.Charged, WO_BreakerRail.Rejected, ...
1
vote
2answers
29 views

SQL Outer Join on multiple summed columns in same table

I am working with a SQL Library (Programming library, ANSI SQL Compliant, called ABS Database,(http://www.componentace.com/help/absdb_manual/absdbmanual_content.htm). It supports the various joins, ...
1
vote
3answers
111 views

Outer/tensor product in R

Given p vectors x1,x2,...,xp each of dimension d, what's the best way to compute their tensor/outer/Kruskal product (the p-array X with entries X[i1,i2,..ip] = x1[i1]x2[i2]...xp[ip])? Looping is ...
1
vote
1answer
59 views

Left Outer Join with one result per match and “priority” of match set by a different field in match SQL Server 2005

I am trying to get a single result (PHONE) per match (CONTACT_ID) in a Left Outer Join. I imagine that there is a way to accomplish this with the preference (or order) being set by another ...
1
vote
2answers
84 views

Matlab outer product like function? How?

I have the following computation I'd like to vectorize in matlab. I have a N x 3 array, call it a. I have a 4 x 1 cell array of function handles, call them b. I would like to create an Nx4 matrix ...
1
vote
3answers
66 views

How to search when joining 3 tables but exclude result for one of them in SQL?

I've been tying for hours now to get a particular result and havn't found any answer on the web - and as I'm not an SQL expert at ALL... So I have 3 tables: user (id, name...), cars(id, type, color, ...
1
vote
1answer
88 views

Linq to SQL and outer apply

I'm trying to convert "SQL Outer Apply" to Linq. The SQL is: select Currencies.Name, Currencies.Sign ,a.ActualPrice from Currencies outer apply (select CurrencyID,ActualPrice from Prices where ...
1
vote
1answer
101 views

help on left outer join with parent-child relationship

i have following table in my database : id grp# code parent# -- ---- ---- ------- 0 10 US NULL 0 30 SF 10 1 10 S NULL 1 30 SF 10 ...
1
vote
4answers
450 views

C#: Reflection: Get class object is created in

I am looking on how to get the object (or object type) that another object is created in. For example: public class RootClass { public class A { public void MethodFromA() { ...
1
vote
4answers
289 views

2 Right Outer Join in SQL Statement

I have an issue in understanding a very simple yet interesting query concerning 2 right outer joins with 'non-sequential' on-expressions. Here is the query: select * from C right outer join A on ...
1
vote
1answer
71 views

How do I join these queries?

query1: SELECT category.id, category.name, category.level, category.description, category.cat1, category.cat2, category.cat3, category.cat4, category.pri_color, category.sec_color, ...
1
vote
3answers
587 views

Problem with Full Outer Join not working as expected

I have a query to subtract current balance from one table with previous balance from another history table. When a particular product has no current balance but has previous balance, I am able to ...
1
vote
1answer
709 views

Good object structure for results of my Hibernate left outer join

I need to make an outer join query that retrieves all of the definitions and any properties they have associated with them that are associated with a certain company. I have two Hibernate models ...
0
votes
0answers
67 views

JPQL Left Join with condition

I have two tables (persistent entity class in Java) with many-to-one bidirectional relation - User(has many invitations) and Invitation(has invited user id and event name). Im trying to select all the ...
0
votes
3answers
114 views

slow query LEFT OUTER JOIN Mysql

thanks can you help me please, I'm migrating an application and go to mysql 5.5 is very slow query returned thank you very much for your help. SELECT DISTINCT b.cc46_cc55_field_id_id AS row_id, ...
0
votes
1answer
58 views

How to feed a list valued variable in the Outer command in mathematica

Consider the following piece of mathematica code: a := {1, 2, 3}; f[n_, a_] := Sum[a[[j]], {j, 1, n}]; Outer[f, {3}, (a)] The intention is to simply to evaluate f[3,a]. But I get the following ...
0
votes
1answer
264 views

NHibernate HQL Query with left outer join

I would like to retrieve some data from 2 different tables. They are named 'A' and 'B'. There is also another table called 'C'. Both A and B have a reference to 'C', but 'C' does NOT have a reference ...
0
votes
1answer
39 views

INSERT INTO a column by using a sub query referencing another DB on the same server

I'm using parts of a replication script written by a well known blogger. I want to make the part I listed below add 1 more column from a totally different table that only holds 1 row. Basically that ...
0
votes
2answers
150 views

Join two queries with COUNT from the same table in MySQL

I have two queries that I run in the same table: SELECT id, COUNT(up) FROM comentarios WHERE up = 1 GROUP BY id And SELECT id, COUNT(down) FROM comentarios WHERE down = 2 GROUP BY id I tried ...
0
votes
4answers
103 views

sql, outer join

I have two tables, linked with an outer join. The relationship between the primary and secondary table is a 1 to [0..n]. The secondary table includes a timestamp column indicating when the record was ...
0
votes
3answers
537 views

Nested subquery is too slow - outer join equivalent?

I'm collecting some basic statistics on our codebase and am trying to generate a query using the following schema data A files table holding all the files (synthetic Primary Key ID, unique path, ...
0
votes
1answer
152 views

Jquery: animate .outerWidth()?

When animating a width toggle, it's not animating the padding, so i looked into .outerWidth() but i'm not exactly sure how to implement this... $('#shareheart').click(function(){ ...
0
votes
1answer
298 views

Left Outer Join Result Issue Using Linq to Sql

We have the following query to give us a left outer join: (from t0 in context.accounts join t1 in context.addresses on new { New_AccountCode = t0.new_accountcode, ...
0
votes
2answers
346 views

Multiple left joins, how to output in php

I have 3 tables I need to join. The contracts table is the main table, the 'jobs' and 'companies' table are extra info that can be associated to the contracts table. so, since I want all entries ...
0
votes
3answers
189 views

Left Joins that link to multiple rows only returning one

I'm trying to join two table (call them table1 and table2) but only return 1 entry for each match. In table2, there is a column called 'current' that is either 'y', 'n', or 'null'. I have left ...
0
votes
2answers
714 views

How to implement outer join expression tree?

I need to implement the query using expressions syntax (because I don't know types in compile time). For example query like this one: from customer in Customers join purchase in Purchases on ...
0
votes
3answers
315 views

How to get Words length and height, when drawing the images on a canvas in GDI+

I draw a string on a canvas, using GDI+ in C++. Is there any API to get the out layer (width, height ) of a string in a certain font? Thanks very much! Many thanks to Windows programmer's solution. I ...
-1
votes
3answers
98 views

Need help with SQL query - out join solution?

I have a database table of email addresses. I want to query it based on a set of strings. I do not just want the query results to return those email addresses contained in the set of strings - that ...