Tagged Questions

0
votes
3answers
30 views

Self Join on variable data

I have a table with the following data: Fiscal Year | Fiscal Quarter | Fiscal Week | Data 2009 | 2 | 22 | 9.5 2009 | 2 | 24 | 8.8 2009 …
0
votes
1answer
26 views

how to implement a double join in n-to-n relation in MySQL

In my database I have cars and persons. Between the cars and the persons is an n-to-n 'drives'-'is driven by' relationship. I would like to query the database to get a list of all the cars that are …
0
votes
4answers
21 views

MySQL join with LIMIT 1 from two tables

I have two tables. One with information about properties. The other stores 3 images for each property. Of these three images - one is marked as being the "main" image. So I have: Properties: p_id …
2
votes
2answers
75 views

A good example for boost::algorithm::join

I recently wanted to use boost::algorithm::join but I couldn't find any usage examples and I didn't want to invest a lot of time learning the Boost Range library just to use this one function. Can …
0
votes
1answer
34 views

SQL Server 2008 extremely slow using FTS on joined tables

I have two tables Product (id int, brandid int,Name nvarchar(1000)) 2+ million rows Brand (id int,name nvarchar(1000)) 20k rows FullText index is enabled on both table's name field. If I do a …
0
votes
1answer
25 views

Hadoop: intervals and JOIN

Hi all, I'm very new to Hadoop and I'm currently trying to join two sources of data where the key is an interval (say [date-begin/date-end]). For example: input1: 20091001-20091002 A …
0
votes
2answers
46 views

Correct MySQL JOIN format to avoid nested SELECT

I have two separate SELECT statements: SELECT VCe.VId FROM `VCe` WHERE `YId` = 9007 AND `MaId` =76 AND `MoId` = 2851 SELECT r_pts.p_id FROM r_pts WHERE r_pts.v_id IN (57202, 57203, 69597, 82261, …
0
votes
3answers
38 views

How to get data from a joined table

I have two table joined with c.id = p.category_id. I want to get categories.name but it gives an error. Could anyone tell me how to get data from a joined table please? function getGalleryone(){ …
1
vote
1answer
29 views

Iphone NSPredicate how to do an INNER JOIN?

Hello, I have been looking thru the documentation and some other posts in this site, but I simply cannot understand how to work this out, which is actually very simple in SQL. Basically I have 2 …
2
votes
9answers
107 views

SQL Join Question

Hi All, I will be joining multiple tables all with the same columns, is there anyway so setup the query so the specific table prefix is not needed? Or am I trapped into using select …
1
vote
2answers
52 views

How do I create an absolute URL from two components, in Perl?

Suppose I have: my $a = "http://site.com"; my $part = "index.html"; my $full = join($a,$part); print $full; >> http://site.com/index.html What do I have to use as join, in order to get my …
0
votes
3answers
30 views

sql join - only select top row from 2nd table…

Bit of an sql noob, have a list in table a of customercodes/phone numbers, and table b has all the call records. I want to select the most recent call from table b for each of the customercodes/phone …
1
vote
3answers
74 views

Most concise and complete Recursive Association Support in CakePHP?

I'm currently mucking about with CakePHP, deciding if I'll use it in an upcoming web application. The problem is, I've got several tables which at some point share relevant data with each other. If I …
1
vote
1answer
16 views

Linq query across three levels of tables to generate sum

I have a series of tables that are joined with Primary Key/Foreign Key relationships. I have a table of Transactions, and each Transaction references one and only one Product. Each product can exist …
2
votes
6answers
160 views
+100

Procedurally transform subquery into join

Is there a generalized procedure or algorithm for transforming a SQL subquery into a join, or vice versa? That is, is there a set of typographic operations that can be applied to a syntactically …

1 2 3 4 5 41 next
15 30 50 per page