Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
365 views

Many-to-many association with multiple self-joins in ActiveRecord

I am trying to implement multiple relations between records of the same model via self-joins (based on @Shtééf's answer). I have the following models create_table :relations, force: true do |t| ...
4
votes
5answers
309 views

Most efficient method for persisting complex types with variable schemas in SQL

What I'm doing I am creating an SQL table that will provide the back-end storage mechanism for complex-typed objects. I am trying to determine how to accomplish this with the best performance. I ...
4
votes
2answers
1k views

Self-referencing models in Rails 3

I have an Entity model and I want to display connections between the Entities. ie, Entity 1 is connected to Entity 2. My thinking, right now, is to create a join model between the two called ...
4
votes
7answers
314 views

What is wrong with this join of a table to itself?

I have a table called TempAllAddresses with the following columns - ID, Address, State. I want to populate a new table with Address, State, and Count. Count should represent how many records there are ...
4
votes
4answers
250 views

Transitive SQL query on same table

Hey. consider d following table and data... in_timestamp | out_timestamp | name | in_id | out_id | in_server | out_server | status timestamp1 | timestamp2 | data1 |id1 | id2 | ...
4
votes
3answers
782 views

self join query

Consider the following table: mysql> select * from phone_numbers; +-------------+------+-----------+ | number | type | person_id | +-------------+------+-----------+ | 17182225465 | home | ...
3
votes
1answer
93 views

Calculate the estimated size of the self-join operation R x R on a relatiion R, given a histogram for R

Query optimizers typically use summaries of data distributions to estimate the sizes of the intermediate tables generated during query processing. One popular such summarization scheme is a histogram, ...
3
votes
2answers
64 views

self join in a table

CustID Name ReferredBy 1 Neeta Sayam 2 Dolly Dilly 1 3 Meena Kimi 2 Find the names of all customers who are referred by others. the ...
3
votes
1answer
121 views

combinations (not permutations) from cross join in sql

If I have a table that I'd like to cross join to itself, how can I remove the duplicate rows? Or to put it another way, how can I do a "order doesn't matter" cross join? So for example, if I have a ...
3
votes
3answers
77 views

MySQL approach: Large self-joins to set values?

I'm working with a 12-million record MyISAM table with surname, address, gender and birthdate fields: ID SURNAME GENDER BDATE COUNTY ADDRESS CITY 1 JONES M ...
3
votes
1answer
442 views

recursive self query

I have the following table: myTable: +----+----------+ | id | parentID | +----+----------+ | 1 | null | | 2 | 1 | | 3 | 1 | | 4 | 2 | | 5 | 4 | ----------------- ...
3
votes
2answers
329 views

Need some serious help with self join issue

Well as you may know, you cannot index a view with a self join. Well actually even two joins of the same table, even if it's not technically a self join. A couple of guys from microsoft came up with a ...
3
votes
7answers
331 views

For this scenario,does a single self-join exist?

I have a table ALPHA with 2 fields GroupId,Member: GroupId | Member; A1----------A; A1----------B; A1----------C; A2----------A; A2----------B; A3----------A; A3----------D; A3----------E; ...
3
votes
6answers
300 views

Get Common Rows Within The Same Table

I've had a bit of a search, but didn't find anything quite like what I'm trying to achieve. Basically, I'm trying to find a similarity between two users' voting habits. I have a table storing each ...
2
votes
3answers
39 views

Join table on itself - performance

I would like some help with the following join. I have one table (with about 20 million rows) that consists of: MemberId (Primary Key) | Id (Primary Key) | TransactionDate | Balance I would like to ...
2
votes
2answers
154 views

How to use Group By and self-join to return min, max, open, and close daily price restult set?

SOLVED All hail StackOverlow! While I was gone, people left 2 solutions (thanks guys--what is the protocol for handing out karma for two working solutions?) Here is the solution that I came back to ...
2
votes
1answer
50 views

How to Mapping Columns in a Self-Join table!

I have a parent/child table and want to update Its PK and FK to new values. the problem is that oldParent Ids Should Sync with new ones matching with Old Ids. so: I have this data as a temp table: ...
2
votes
3answers
255 views

Aggregating data with a self-joined table in SQL Server 2008r2

I'm trying to provide reporting functionality on a typical restaurant type database. I describe the specifics of the problem below, but in a nutshell I need to be able retrieve aggregate data (sums ...
2
votes
1answer
496 views

LINQ self join in ASP.NET MVC3

I have a situation where I need to do a self join on a table in LINQ. The table consists of fields ItemsID, Title, SeriesTitle, and many other. An item can be either a series or members and I can tell ...
2
votes
1answer
426 views

SQL Server 2008 Optimize FULL JOIN with ISNULL statements

HI All I was hoping someone could help me improve a query I have to run periodically. At the moment it takes more than 40 minutes to execute. It uses the full allocated memory during this time, but ...
2
votes
2answers
857 views

Self-join on a table with ActiveRecord

I have an ActiveRecord called Name which contains names in various Languages. class Name < ActiveRecord::Base belongs_to :language class Language < ActiveRecord::Base has_many :names ...
2
votes
1answer
242 views

MYSQL: Avoiding cartesian product of repeating records when self-joining

There are two tables: table A and table B. They have the same columns and the data is practically identical. They both have auto-incremented IDs, the only difference between the two is that they have ...
2
votes
2answers
301 views

MySQL self-join for an EAV based stock control application

This question relates to the schema I suggested in my original question regarding a stock control application. I'm trying to create a MySQL query that provides the current stock for a particular ...
2
votes
2answers
226 views

Self join to a table

I have a table like Employee ================== name salary ================== a 10000 b 20000 c 5000 d 40000 i want to get all the employee whose salary is greater ...
2
votes
5answers
380 views

What are appropriate ways to represent relationships between people in a database table?

I've got a table of people - an ID primary key and a name. In my application, people can have 0 or more real-world relationships with other people, so Jack might "work for" Jane and Tom might ...
2
votes
1answer
713 views

Model a person-to-person relationship in Ruby-on-Rails using has_many :through

I would like to model a person's relationship to another person, where the relationship isn't necessarily hierarchical (i.e. friends & colleagues, rather than parent & children) and I am ...
2
votes
3answers
95 views

MySQL join question

Can anyone tell me if it is possible to combine the following two queries into one using a self-join and, if so, how to do it? Query 1: SELECT pm.username AS user, uc.content_id AS id, ...
1
vote
1answer
93 views

Can't understand EclipseLink warning

I'm using EclipseLink 2.3.1 to model self referencing table with JPA 2. I get weird warning from EclipseLink when I create the EntityManager. [EL Warning]: 2011-11-27 ...
1
vote
3answers
106 views

MYSQL self-join to select last year sales

I'm trying to select historical totals (t1.date - 1 for now) off of a range of given dates (t1.DATE >= '2011-01-01' AND t1.DATE <= '2011-11-11') SELECT t1.date as DATE, SUM(t1.total), t2.date, ...
1
vote
1answer
50 views

SQL: Persisting a root_id in a three-level tree?

I have a simple three-level tree, currently stored as an adjacency list: CREATE TABLE categories ( id int, name text, parent_id int); It's read-only, and I often need to know the root ...
1
vote
5answers
124 views

How to use GROUP BY with SELF JOIN?

I have a person table which holds person and his manager at the same time.I'm using SELF JOIN to select managers email but I get a lot of duplicates. ...
1
vote
1answer
96 views

SQL: self join using each rows only once [closed]

Possible Duplicate: combinations (not permutations) from cross join in sql I've currently got a table with the following records: A1 A2 A3 B1 B2 C1 C2 Where the same letter denotes some ...
1
vote
1answer
46 views

Need help with optimizing “not in” query

I have an SQL query that I am looking to optimize. SELECT * FROM QUEUE_SMS_ALERT Q1 where ALERT_ORIGIN = "FOO" AND RECORD_ID is null and PHONE NOT IN ( SELECT DISTINCT PHONE FROM ...
1
vote
0answers
147 views

NHibernate self-join on multiple fields

In short: I can't figure out how to translate this into NHibernate:- ;with PartialInfo as ( select distinct p.ProductId, p.Name, min(po.DateOrdered) StartedStocking, max(po.DateOrdered) ...
1
vote
0answers
66 views

postgis advanced (?) selection query

The problem: I need to select, for each building in my table that has say at least 2 pharmacies and 2 education centers within a radius of 1km, all POIs (pharmacies, comercial centres, medical ...
1
vote
0answers
161 views

LEFT SELF JOIN in Rails - Thread Based Private Messaging

I am trying to implement one to one thread based private messaging in Rails. Following is my Message model: Table name: messages id :integer not null, primary key sender_id ...
1
vote
2answers
49 views

sql server - Combine single ids into range

I have a table that contains lots of integers. This table gets queried and the results end up being turned into xml. If the table contains for example the following items: SELECT itemId FROM items ...
1
vote
2answers
287 views

Linq self-join and filter

I have a List<ClaimEvent> made up of this class: public class ClaimEvent { public ClaimEventType ClaimEventClaimEventType { get; set; } public DateTime OccurredOn { get; set; } ...
1
vote
1answer
132 views

Update query with aggregate self-join

I am using a self-join to get year-to-date totals. This works: SELECT tc.EmployeeID, tc.TimeCardNum, tc.Tax, SUM(inr.Tax) AS YTDTax FROM TimeCards tc JOIN ( SELECT EmployeeID, TimeCardNum, ...
1
vote
3answers
179 views

MYSQL SQL (self) join?

Using this sample dataset: CREATE TABLE test. test2 (id VARCHAR(7), AA INT, BBB INT, CCC VARCHAR (12)); INSERT INTO test.test2 (id, AA, BBB,CCC) VALUES ( 'A123', 45, 123, '2011-03' ); INSERT INTO ...
1
vote
2answers
79 views

MySQL query question

I have a database containing the route data for airlines. Some of the attributes are sources_airport_ID, destination_airport_ID, and airline(which supports the route from source to destination). I'm ...
1
vote
1answer
223 views

MySQL join to same table

I've got one table (called staging) with the following relevant fields: id (PRIMARY) bundle_id (INT) product (enum H,L,D) bundle_code (enum 10,20) I need to search for a bundle_id where the ...
1
vote
2answers
532 views

Rails: How do self-referential has_many models work?

So, I'm working on an app where I want to users to be able to group objects in "folders". Basically: User has_many :foos Foos don't have to be in a folder, but they can be. In that case: Folder ...
1
vote
1answer
696 views

LINQ: Self join query, how to accomplish this?

Can anyone help? I have 1 class, basically it holds Members and within that class is a List. The members i have in a List also... So basically it goes like this, I have 2 members and each member ...
1
vote
5answers
141 views

Join a table on itself vs. to itself?

Not extremely significant... but I've gotten a bit curious: What's the correct terminology for a self-join - do you join a table on itself, or join a table to itself?
1
vote
2answers
368 views

MySql query to get all combinations of elements in same table field

I would like to reformat a MySql table for use in a network node mapping program. The original format is: | ID | story | org | scribe | and I would like to pull all org names into two output tables ...
1
vote
2answers
96 views

Is there something more efficient than joining tables in MySQL?

I have a table with entity-attribute-value structure. As an example, as entities I can have different countries. I can have the following attributes: "located in", "has border with", "capital". Then ...
1
vote
2answers
161 views

Help converting SQL nested sub-query to join query for mysql 4.0 compatibility

I have a nested SQL query : SELECT DISTINCT(topic_id) FROM bb_posts WHERE topic_id NOT IN ( SELECT topic_id FROM bb_posts WHERE poster_id = $user_id AND post_status = 0 ) ORDER BY post_time ...
1
vote
3answers
436 views

parsing Hierarchical self-join table by tree level?

I have a self referential category table as you see: I want to parse this table to find out tree level for each category. for example if root node level is 0 then CPU and Hard Drive and VGA and RAM ...
1
vote
2answers
136 views

MySQL self join question

Take a look at the following mySQL query: SELECT fname,lname FROM users WHERE users.id IN (SELECT sub FROM friends WHERE friends.dom = 1 ) The above query first creates a set of ALL the ...

1 2 3