0
votes
2answers
33 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, …
1
vote
5answers
93 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
vote
1answer
24 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 …
1
vote
3answers
60 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 …
2
votes
1answer
134 views
Need help converting query with joins and group by/count to LINQ to SQL
I need help converting this query to linq to sql:
select
rd.RouteDispatchID,
r.RouteNumber,
s.ShortDescription Status,
rd.DispatchDate,
rd.CreationDate CreatedDate,
…
0
votes
3answers
28 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 …
2
votes
9answers
104 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 …
0
votes
1answer
34 views
Java JPA Inner JOIN with WHERE statement
Hi folks,
I want to annotate following structure:
I have this query:
SELECT A.*, BES.*, BES_2.*
INNER JOIN BES ON A.a = BES.a AND A.b = BES.b
INNER JOIN BES AS BES_2 ON A.a = BES_2.a AND A.b = …
1
vote
2answers
46 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 …
1
vote
1answer
12 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 …
0
votes
2answers
44 views
PHP PDO MYSQL JOIN
I have a table called cms_page in which each page has an ID. I want to pull all the information from this table and all the information from cms_page_part table where page_id is equal to the ID i …
0
votes
3answers
172 views
Why does this sql code give error 1066 (Not unique table/alias: ‘user’)?
This is my table structure.
This is my code,This give error: #1066 - Not unique table/alias: 'user'
SELECT article.* , section.title, category.title, user.name, user.name
FROM article
INNER JOIN …
-1
votes
3answers
77 views
table join where
Table1 t10 (id)
id
---
1
2
table t11(a1,a2,a3)
a1 a2 a3
----------
1 10 a
1 10 b
1 11 b
1 12 c
2 20 d
2 21 e
select * from t10 a,t11 b where a.id = b.a1
how to display
…
0
votes
2answers
54 views
MySQL - What JOIN should i use? 2 Tables, Not the same number of members
so i have 2 tables:
-char (keeps information about the player)
-special (its a rank for top mobs, so each line from this table is a record of all the players that killed a mob and the total time)
…
2
votes
2answers
26 views
Oracle JOIN USING + Subquery : ora-00904 string: invalid identifier
Hi,
i m having a little syntax problem in my query (simplified) :
select *
from table1 t1
inner join table2 t2 using (pk1)
inner join table3 t3 using (pk2)
where not exists (select1 from table4 t4 …
