1
vote
1answer
111 views
Efficient MySQL query to find entries in A where not matched in B
I have a couple of tables (products and suppliers) and want to find out which items are no longer listed in the suppliers table.
Table uc_products has the products. Table uc_suppl …
0
votes
6answers
59 views
Is it possible to restrict the results of an outer join?
I've got a scenario where I need to do a join across three tables.
table #1 is a list of users
table #2 contains users who have trait A
table #3 contains users who have trait B
…
0
votes
1answer
62 views
SubSonic Outer Join
There seems to be a Bug with the Outer Join statement in SubSonic 3, or maybe it's just my ignorance, but the following craps out:
var Objeto = from t in Table1.All()
…
2
votes
3answers
139 views
Linq to entities Left Join
Hi all,
I want to achieve the following in Linq to Entities:
Get all Enquires that have no Application or the Application has a status != 4 (Completed)
select e.*
from Enquiry e …
0
votes
1answer
35 views
LINQ update on joined collections
How do I use LINQ to update objects in one list from objects in a second list? My question is very similar to http://stackoverflow.com/questions/709560/linq-in-line-property-update …
1
vote
1answer
51 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 …
0
votes
6answers
160 views
SQL SELECT from multiple tables
How can I get all products from customers1 and customers2 include their customer names?
customer1 table
cid name1
1 john
2 joe
customer2 table
cid name2
p1 sandy
p2 linda
…
1
vote
3answers
68 views
Generate FULL JOIN with LinqToSQL
I have this linq query :
(from rapportBase in New_RapportReferencementBases
join rapportExtensionAll in New_RapportReferencementExtensionBases on rapportBase.New_RapportReference …
1
vote
1answer
157 views
NHibernate Left Outer Join SubClass
I have 2 entities products and images. Not all images are product images, and images are a sub class of a file below are my entities. I need to find all of the images that are no …
1
vote
1answer
96 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 …
4
votes
3answers
367 views
How to join data frames in R (inner, outer, left, right)?
Given two data frames
df1 = data.frame(CustomerId=c(1:6),Product=c(rep("Toaster",3),rep("Radio",3)))
df2 = data.frame(CustomerId=c(2,4,6),State=c(rep("Alabama",2),rep("Ohio",1)))
…
0
votes
3answers
125 views
SQL Server 2005 - Order of Inner Joins
I have a query containing three inner join statements in the Where clause. The query takes roughly 2 minutes to execute. If I simply change the order of two of the inner joins, per …
0
votes
4answers
305 views
Select top one from left outer join
Guys, I have a query where basically select the latest browser that our user used.
here is our (simplified) table structure
HITS_TABLE
----------
USERID
BROWSER
HITSDATE
USER_TA …
2
votes
1answer
181 views
How to exclude duplicate rows when joining a table with itself.
Here's a sample table to help illustrate my problem:
mysql> select * from test;
+----+--------------+--------+
| id | type | siteid |
+----+--------------+--------+
| …
4
votes
1answer
1k views
LINQ to SQL - Left Outer Join with multiple join conditions
I have the following SQL which I am trying to translate to LINQ:
SELECT f.value
FROM period as p
LEFT OUTER JOIN facts AS f ON p.id = f.periodid AND f.otherid = 17
WHERE p.compan …
