Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
243 views

SQL Multi Condition CTE Recursion

I the database i have the 2 following pieces of information for each identifier. The company that controls them, and companies where they have small bits of control. Something along the lines, 2 ...
7
votes
2answers
155 views

How CTE really works?

I came across this CTE solution for concatenating row elements and I thought it's brilliant and I realized how powerful CTEs can be. However, in order to use such a tool effectively I need to know ...
7
votes
2answers
107 views

use recursive common table expressions to find consecutive no.s from two tables

i have the following tables: Actual Optional ------ -------- 4 3 13 6 20 7 26 14 19 21 ...
6
votes
6answers
441 views

How does a Recursive CTE run, line by line?

I think I've got the format of Recursive CTEs down well enough to write one, but still find myself frustrated to no end that I cannot manually process one (pretend to be the SQL engine myself and ...
6
votes
5answers
676 views

Best method to search hierarchical data

I'm looking at building a facility which allows querying for data with hierarchical filtering. I have a few ideas how I'm going to go about it but was wondering if there are any recommendations or ...
5
votes
2answers
1k views

SQL Server recursive query

I am new to SQL Server development. Most of my experience has been done with Oracle. suppose I have the following table that contains Appointments objects CREATE TABLE [dbo].[Appointments]( ...
4
votes
1answer
107 views

Is it possible to force SQL Server to use the plan I want to optimise recursive cte query

I have a query in a view using a recursive cte on a large tree that works well when queried with a hardcoded number but not with a parameter. Is it possible to force SQL Server to use the plan I want ...
4
votes
1answer
235 views

SQL recursive query

I have a Table Category, 1) Id 2) CategoryName 3) CategoryMaster with data as: 1 Computers 0 2 Software 1 3 Multimedia 1 4 Animation 3 5 Health 0 6 Healthsub 5 and i have created recursive ...
4
votes
1answer
208 views

Exiting from recursive common table expression once the result set contains some value

Given the following table: create table TreeNode ( ID int not null primary key, ParentID int null foreign key references TreeNode (ID) ) How could I write a common table expression to start at ...
4
votes
2answers
364 views

sql recursive function - to find managers

Lets say I have the following table User_ID Manager_ID --------------------- Linda Jacob Mark Linda Kevin Linda Steve Mark John Kevin Basically the ...
4
votes
2answers
340 views

Recursive XML in scala

I am trying to parse this document in scala: <?xml version="1.0"?> <model> <joint name="pelvis"> <joint name="lleg"> <joint ...
4
votes
2answers
3k views

Building a Table Dependency Graph With A Recurssive Query

I am trying to build a dependency graph of tables based on the foreign keys between them. This graph needs to start with an arbitrary table name as its root. I could, given a table name look up the ...
3
votes
3answers
126 views

Recursive Query in MYSQL?

I think my problem is solved with a 'recursive query', but since MySQL doesn't support recursive queries I was trying to use the adjacent list model. This should not be a problem since I know how ...
3
votes
1answer
80 views

Recursive INSERT query for a grouped sequence

I have two tables like this: Table1ID Table2ID Table1ID SomeDate -------- ------------------------------ 1 1 1 2011-01-01 2 ...
3
votes
1answer
134 views

Please help with this SQL query

I'm using Firebird 2.1. There is a table name Folders, with the fields: FolderID ParentFolderID FolderName ParentFolderID is -1 if it's the root folder -- otherwise it contains the parent ...
3
votes
3answers
235 views

Dealing with recursion (oracle)

I'm a having some problems trying to do some business logic for a client (web trading): My client has a table (simplified) like this one: || ID || OFFERED_PRODUCT_ID || DEMANDED_PRODUCT_ID || || ...
3
votes
1answer
1k views

Recursive JPA query?

Does JPA 2 have any mechanism for running recursive queries? Here's my situation: I have an entity E, which contains an integer field x. It also may have children of type E, mapped via @OneToMany. ...
3
votes
3answers
500 views

SQL select descendants of a row

Suppose a tree structure is implemented in SQL like this: CREATE TABLE nodes ( id INTEGER PRIMARY KEY, parent INTEGER -- references nodes(id) ); Although cycles can be created in this ...
3
votes
1answer
346 views

SQL select inverted tree

Hello i have tree structure in sql. Logics is standard: SomeID, ParentID, other fields. I have select procedure, which selects data like this: 1. 1.1 1.1.1 and so on. How to write the select ...
2
votes
1answer
37 views

Getting comma separated month for a given from month and to month using recursive CTE

We have requirement where 2 months and 2 years are provided as input. And the result should provide a comma separated month-year all the months between the from month-year and to month-year. Say, we ...
2
votes
2answers
114 views

T-SQL Recursion; Multiple Recursions?

I'm trying to conceptualize a solution to a problem I have with recursion and I can't quite wrap my mind around it. I have three tables. We'll call them DocGroup, GroupGroup, and GroupUser. In the ...
2
votes
1answer
142 views

PHP Turn recursive array function into a class

I have a simple recursive array function that looks like this: function recursive_array($results) { global $DBH; if (count($results)) { echo $res - > Fname; ...
2
votes
2answers
275 views

CONNECT BY or hierarchical queries in RDBMS other than Oracle

Oracle ships with a very handy feature. You can create hierarchical queries (recursive behaviour) using the following clause: CONNECT BY [NOCYCLE] {condition [AND condition...]} [START WITH ...
2
votes
4answers
76 views

Java generics problem

So first time generics, my assignment is to make a dungeon(gameworld) made out of squares, these squares(actually cubes) have a lot of types but this is not reall important. So i have a class of ...
2
votes
1answer
169 views

How to use a recursive query as a subquery?

I need to write a query that calls a recursive query many times. I was not able to figure out how to do. I guess I can do this by using a cursor, preparing the sql statement at run time and then use ...
2
votes
5answers
198 views

Recursive select in SQL

I have an issue I just can't get my head around. I know what I want, just simply can't get it out on the screen. What I have is a table looking like this: Id, PK UniqueIdentifier, NotNull Name, ...
2
votes
1answer
525 views

recursive cte with ranking functions

How to use ranking functions in recursive cte? Here's simple example showing how I'm trying to do: with cte as ( select 1 a, 1 b union all select 1, 2 union all select 2, 3 union all select 2, 4 ) ...
2
votes
1answer
622 views

Need to convert a recursive CTE query to an index friendly query

After going through all the hard work of writing a recursive CTE query to meet my needs, I realize I can't use it because it doesn't work in an indexed view. So I need something else to replace the ...
2
votes
3answers
582 views

Django self-recursive foreignkey filter query for all childs

I have this model having self foreignkey relation. class Person(TimeStampedModel): name = models.CharField(max_length=32) parent = models.ForeignKey('self', null=True, blank=True, ...
2
votes
1answer
106 views

SQL 2008 recursive query for message threads given an entry point of one mesage

Maybe an over elaborate title. Basically think of an email inbox. I have a table as so: As you can see, it is a recursive table, very simple, just has the parentID of a message, and as you can ...
2
votes
3answers
169 views

SQL Server Recursive query

Some days ago I asked a question on SO regarding help on a recursive query. The problem of that question was "How to get the history of a Person appointments". Now I am having a problem similar to ...
2
votes
2answers
226 views

Recursive query

I have a table which contains the following fields Supervisorid Empid This is just like a referral program. A guy can refer 3 guys under him i.e, 3 is referring three guys namely 4 5 8 similarly ...
2
votes
1answer
436 views

Recursive stored functions in MySQL

I'm trying to make a function that recursively builds a path for a specific category CREATE FUNCTION getPath(inId INT) RETURNS TEXT DETERMINISTIC BEGIN DECLARE return_path TEXT; DECLARE ...
2
votes
2answers
213 views

Find Parent Recursively using Query

I am using postgresql. I have the table as like below parent_id child_id ---------------------- 101 102 103 104 104 105 105 106 I want to write a sql query which will ...
2
votes
2answers
265 views

Recursive query question - break rows into columns?

I have a table "Families", like so FamilyID PersonID Relationship ----------------------------------------------- F001 P001 Son F001 P002 Daughter F001 P003 ...
2
votes
1answer
393 views

Make a recursive function in SQL Server 2005

cat_id prod_name parent_cat_id ------ ---------- ------------ 1 prod_1 2 2 prod_2 5 3 prod_3 1 4 prod_4 3 5 prod_5 7 6 prod_6 5 In a recursive function, make a table ...
1
vote
1answer
33 views

Find the total count of all related records in child records using SQL Server

I am trying to find the count of records in a related table, however the parent table contains a recursive relationship and I can only seem to get the related count for records that are at the bottom ...
1
vote
2answers
86 views

SQL Query with recursive foreign key

I have a table with columns EmployeeID, EmployeeName, and ManagerID. ManagerID is a recursive FK of EmployeeID. I am trying to query the table so that the name of employees who are managers are ...
1
vote
3answers
110 views

Recursive loop missing the first value in c#

I want to get a list of values, After I get one value I pass the value and call the same method. if the structure is like 60 | 61 | 63 | 64 the code works fine and returns all the value when I ...
1
vote
0answers
33 views

How to get all descendants of some node whis Linq-To-Entites?

I need to get recursively all descendants of some node. For example for node with Id=1 I need to get following descendants: 2,3,4,5,6. For node with Id=2 I need to get nodes:4,5,7. How I can to do ...
1
vote
2answers
81 views

SQL query to find category and sub category

I have a table which have category_id and parent_category_id. How I can get 1 category and 5 sub category by using SQL query. Suppose table name is : Category ...
1
vote
1answer
72 views

Recursive SQL to fill the value of a several columns

I have a bit of a strange design requirement. Here is a example table of what I am working with DECLARE @T TABLE ( kID INT, sCode VARCHAR(50), kParentID INT NULL, nNestLevel INT ) INSERT INTO @T ...
1
vote
3answers
55 views

Selecting a map table of a father-son table

I have a categories table with a father-son relationship which looks something like this: Table name: tblCategories Columns: catID catFatherID - This column has a relationship to catID What ...
1
vote
1answer
72 views

Oracle - Recursive query using START WITH… CONNECTED BY…?

Say i have the following table, using Oracle 10g ARTIFACT_LABEL | DEPENDANT_ON test1 | abc1 test1 | abc2 test1 | abc3 abc3 | xyz1 abc4 | ...
1
vote
3answers
68 views

PHP - Generate a dynamic IF statement for mysql

Im struggling with this one. I have an array of keys/values of indeterminate size which I want to use to generate a dynamic if statement for a MySQL query. My array looks like: $arr = ...
1
vote
5answers
166 views

Perl Recursion and Functions

Having heard about Perl for year I decided to give it a few hours of my time to see how much I could pick up. I got through the basics fine and then got to loops. As a test I wanted to see if I could ...
1
vote
2answers
145 views

How to reverse the results of this query?

I'm using Firebird 2.1. There is a table name Folders, with these fields: FolderID ParentFolderID FolderName ParentFolderID is -1 if it's the root folder - otherwise it contains the parent folder's ...
1
vote
1answer
51 views

PostgreSql: order result - II

REFER: postgresql: ordered result I asked this question and accepted the answer. Well, at the time of asking I had something different in my mind, but I was convinced by the accepted answer. Well, I ...
1
vote
2answers
36 views

postgresql: ordered result

I've a table that looks like: id | user_id | activity_id | activity_type | root_id | is_root | timestamp ----+---------+-------------+---------------+---------+---------+----------- 1 | 1 | ...
1
vote
1answer
189 views

How to optimize LINQ-to-SQL for recursive queries?

I have the following SQL table: ObjectTable -------------------------------------------------- | ID | Name | Order | ParentID | | int PK | nvarchar(50) | int | int FK | ...

1 2 3