A table can be joined to itself and this is called a self-join. You can use a self-join to create a result set that joins records in a table with other records in the same table for example to filter a specific subset of records from within a single table without returning duplicate or similar rows.
0
votes
0answers
16 views
Self join/update of table with data in same table
Due to combining old and new system data in a table I have a list of data like this:
Work no Work name
========= =========
123456 James
123456 James, (123456)
And I want to update to:
...
0
votes
1answer
32 views
Self Join to return distinct records in SQLite
I an trying to retrieve the distinct records using the follow SQL Statement:
SELECT count (*) FROM(
SELECT DISTINCT pv1.docid, pv2.docid
FROM Frequency pv1
INNER JOIN Frequency pv2
ON pv1.docid = ...
0
votes
2answers
40 views
in sql how to return single row of data from more than one row in the same table
I have a single table of activities, some labelled 'Assessment' (type_id of 50) and some 'Counselling' (type_id of 9) with dates of the activities. I need to compare these dates to find how long ...
1
vote
1answer
36 views
Speeding up a self-join in MYSQL
I have a table with ~2.8 million rows, 3 columns. Each row represents a marketing-touch from the company and has "customer_id", "marketing_type", and "week_num" There is an index on "customer_id" ...
0
votes
0answers
30 views
SQL self join for parent, child and orphan rows
I'm not sure what the procedure is here - this question is pretty much a direct continuation of this one. However, a new requirement has been introduced that may well necessitate a completely ...
0
votes
0answers
60 views
n:m self-join with ruby on rails active record
I'm trying to accomplish the following with ruby on rails, and I have problems to get the model-configuration right:
I would like to model possible connections between airports. I created the ...
1
vote
1answer
52 views
MERGE Self-Join SQL Server
I am using the MERGE command on SQL Server 2008, to insert/update a row in the table.
However the target and source tables are the same.
So I want to verify if the row is present update it in the ...
0
votes
1answer
28 views
difference in days, between two recordings
I have this table
User | days
A | 1
A | 1
A | 2
B | 2
B | 5
and I'd like to have
User | difference_in_day
A | 0
A | 1
B | 3
I think I have to do a self-join, but i ...
0
votes
1answer
28 views
Doctrine: Removing entity in self-referencing (many-to-many)
I would like to ask your help in deleting association.
My User entity:
class User
{
...
/**
* @ORM\ManyToMany(targetEntity="User", mappedBy="following")
**/
private ...
1
vote
1answer
66 views
how h can true join in examples?
I have the following query which does not give the expected result:
SELECT "invoice"."ITEMNO",
"invoice"."Outgoing",
"storeage"."incoming"
FROM "MVXJDTAP"."MVXJDTA"."invoice"
INNER JOIN ...
1
vote
1answer
57 views
MongoDB SELF JOIN query having 1 collection
I'd like to do something like
SELECT e1.sender
FROM email as e1, email as e2
WHERE e1.sender = e2.receiver;
but in MongoDB. I found many forums about JOIN, which can be implemented via MapReduce in ...
1
vote
1answer
52 views
self joined group by issue?
I have a problem with a self joined table where the group by isn't working properly or something is wrong with my code.
I'm trying to produce a table where I have housing sales data and I want a ...
0
votes
1answer
27 views
differing column names in self-outer-joins
When writing a self-join in tSQL I can avoid duplicate column names thus:
SELECT FirstEvent.Title AS FirstTitle, SecondEvent.Title AS FirstTitle
FROM ContiguatedEvents AS FirstEvent
LEFT OUTER JOIN ...
1
vote
2answers
62 views
how to exchange values of same column in same table
I want to know how I can exchange values of a same column in the same table itself in one query.
For example, Table is like below.
SerialNo Status
1 Married
2 ...
0
votes
1answer
52 views
Finding pairs from a single column depending on second column from the same table
I have the below scenario
Source Table:
Col1 Col2 Time
I1 CRR T0
I1 CRH T1
I1 CRH T2
I1 CRR T3
I1 CRH T4
I1 CRR T5
I1 CRH T6
I2 CRH T7
I2 CRR ...
0
votes
1answer
63 views
Self-join with Laravel
How can I do a self-join with Laravel 3 or 4?
class Category extends Eloquent {
public function category ()
{
return $this->has_one('Category');
}
}
1
vote
2answers
32 views
Presentation order of inner self join
If I have a table as follows:
+------+-------+
| sno | cno |
+------+-------+
| 1 | CS112 |
| 1 | CS113 |
| 1 | CS114 |
| 2 | CS112 |
| 3 | CS112 |
| 3 | CS114 ...
0
votes
0answers
28 views
Bidirectional mapping using Hibernate
How can I implement a many to many mapping in Hibernate which specifies the association between two entities in both directions?
What do I mean with that?
I have the class Person which can have ...
0
votes
1answer
70 views
Match when column does and does not equal value across multiple rows
I have a table with a many-to-many relationship to two other tables:
CREATE TABLE assoc (
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
ref1 INT NOT NULL,
ref2 INT NOT NULL,
INDEX composite_key ...
0
votes
2answers
25 views
how to delete a tree in a self referencing table?
I have the following table:
MyTree(IDNode, IDRootNode, IDParentNode, Left, Right, Depth, ...)
IDNode is the primary key that identiy the node.
IDRootNode is the root node.
IDParentNode is the ...
0
votes
1answer
39 views
HABTM or HM/HMT Self-Join in Rails
I have a Users model and want users to be able to Subscribe to another User to get notifications when they post things.
This is sort of a has_many self join and a many_to_many self join.
I need to ...
0
votes
0answers
42 views
has_many_and_belongs_to self-join association and conditional has_many
We have these 3 models:
class Group < ActiveRecord::Base
attr_accessible :name
has_many :users
has_and_belongs_to_many :suppliers,
:class_name => "Group",
...
0
votes
2answers
64 views
SQL Column compare in the same table (self-join)
I need a hint in order to solve this SQL (self-join) problem:
a table, with columns value and category
id || value || category || foo
------------------------------------
1 || 1 || a ...
0
votes
2answers
75 views
Parent Child Hierachy in asp.net
I want to show family hierachy in asp.net.
I have table as Family with attributes ParentID, ChildID, Name. Table have seft join on ParentID and ChildID. How I show the data from database. The ...
0
votes
1answer
30 views
About Self Join of tables
What are the possibilities after a self join with respect to a column:
Choose one in your answer:
Does that remove redundancies, and keep the unique values of the column on which the join is ...
-1
votes
3answers
33 views
MySQL Self Join Not All Rows included
I have a problem working out a Self Join.
I have the following table:
CREATE TABLE `test`.`tableN` (
`id` int(10) unsigned NOT NULL auto_increment,
`Group` int(10) unsigned NOT NULL,
`Item` ...
0
votes
1answer
127 views
Complex Subquery into Self Join from sqlzoo task 10
I am trying to solve task 10 from http://sqlzoo.net/wiki/Self_join
Here is my select in select:
SELECT DISTINCT astops.name, bbstops.name FROM
route a JOIN route b ON a.company=b.company AND ...
3
votes
2answers
77 views
R: first observation by group using data.table & self-join
I'm trying to get the top row by a group of three variables using a data.table.
I have a working solution:
col1 <- c(1,1,1,1,2,2,2,2,3,3,3,3)
col2 <- ...
0
votes
2answers
42 views
RoR Show name instead id of a self-join table
This is my first time here!
I hope nobody get mad with my question, I started studing rails just fews days ago.
The question is:
I got a model students wiht :id, :name, :email, :phone and ...
0
votes
0answers
26 views
MYSQL is this subselect the same, or should I expect unpredictable results?
After doing some practice testing for my ZCE here a few days ago I ran into an interesting problem that showed me a bit more about Mysql than I had originally known before. I thought I would try to ...
0
votes
1answer
51 views
Self-join: SQL parse error on table alias
Using a simple self join to list employees' managers:
CREATE VIEW AS
SELECT e1.EMP_ID EmployeeId, e1.FNAME EmployeeName,
e1.MANAGER ManagerName
FROM EMPLOYEE e1
LEFT JOIN EMPLOYEE ...
0
votes
2answers
55 views
Self Join - Inserting Value When Not Found [closed]
All, I need some help with a self join and my brain simply isn't cutting it for some reason.
I'll try to simplify this:
Source Table
Id Name Value
0 Foo0 Value0
1 Foo1 Value1
2 Foo2 Value2
3 Foo3 ...
1
vote
1answer
19 views
Rails find_by_sql to find a self referential subset of the model
I have a simple relationship:
class Organization < ActiveRecord::Base
belongs_to :parent_organization, class_name: 'Organization'
end
So an organization can be related to another organization ...
0
votes
1answer
53 views
Comparing Supervisor's Salaries
I'm trying to display employees who make at least 25% of what their supervisor makes. So far I have a subquery code that can display the supervisors themselves, but I'm not sure how to "grab" the ...
1
vote
2answers
67 views
Self Join bringing too many records
I have this query to express a set of business rules.
To get the information I need, I tried joining the table on itself but that brings back many more records than are actually in the table. Below ...
3
votes
2answers
79 views
SQL Turn 1 field, multiple records into 1 record multiple fields
If I were more experienced, I'd be able to use similar "merge rows" questions to figure this out, but I can't get them to work. I've got about 2000 "garages" in an accdb with certain categories ...
1
vote
2answers
31 views
mysql join with the same table without duplicates
I have a table instructors with the following strcture/data:
-----------------
|id | name |
-----------------
|1 | saad |
|2 | imran |
-----------------
I want to do a join with the ...
0
votes
1answer
62 views
View having self join on table
I want to make a view for which i will be requiring a query having self join in it. I am worried about its performance and behavior as it is going to be fetch some handsome amount of data. Details of ...
2
votes
1answer
52 views
Django queries when Joining the same table on itself
I find at my job I often have to join the same table on itself, partly because I have no control of the DB design, and partly because things are wanted pretty custom most of the time.
Select distinct ...
0
votes
2answers
60 views
How to Fetch Data based on columns data match using SQL
Looking for small help, it i need to fetch data from one Table which will have data for all years like 2009,2010,2011 etc.
I need to create a SQL query which will pull data based on whether it has ...
1
vote
2answers
130 views
Self join with inner and outer join query
I have a table that is set up so that one column (attribute) contains information like first name, last name, account number and any other information related to a thing in the database. Another ...
0
votes
3answers
55 views
Understanding SQL self-join.
I am trying to understand SQL Self-joins. I have the following table 'persons' which has fullname, lastname, address and city of the employee (source W3Schools):
mysql> select * from persons;
...
1
vote
1answer
85 views
How to map self join with composite key once the foreign key is part of the primary key
I am running into the following problem: I must map my Employee class to the following database schema (where id1 and id2 is a composite primary key):
--------------------------
| id1 | id2 | ...
2
votes
4answers
101 views
List all SQL records occurring within x hours of another set of records
Am I even close on this?
I'm trying to list all the records that contain "Ape"... as well as all the
records that occur x days BEFORE any "Ape" record(s).
I guess I need a self-join table?
-- Doesn't ...
0
votes
1answer
63 views
Adding counter cache to self join table in rails
I am trying to add a counter cache on a a column in a self join association.
I have two models User and followings. User has followers and followees, who are from the user table itself.
User.rb
...
0
votes
1answer
62 views
how to rewrite a query that uses a subquery on self as a join
How do I rewrite the following query as a join? I think rewriting it as a join would perform better (I'm theorizing) but I'm having hard time getting the join right. Any help is much appreciated.
...
2
votes
1answer
125 views
Replace nested select query by self join
I recently asked a question here concerning an SQL query: Trouble wrapping head around complex SQL delete query
I now understand that what I'm trying to do is too complex to pull off with a single ...
0
votes
1answer
115 views
mySQL Divide two values from Same Column
I wish to divide values from the same column using mySQL.
is there a better way of doing this??? Do I really need 3 select statements?
SELECT (SELECT FixAM From Fixes WHERE Id = 1) / (SELECT FixAM ...
2
votes
1answer
46 views
Query for following scenario
I have a table with columns EMPLOYEEID, EMPLOYEENAME, MANAGERID.
MANGERID is from the column EMPLOYEEID. SOME EMPLOYEEID don't have any manangerid(i.e. NULL). Now I need a output from query such ...
0
votes
1answer
111 views
Update statement with self join in sybase
I have one table which contain following data.
Emp_Id Name dept cat
1 abc P
1 HC G
2 def P
2 ET G
3 ghi ...





