Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: generate self join sql with specified depth level

by suaveant (Parson)
on Dec 22, 2009 at 14:59 UTC ( [id://813901]=note: print w/replies, xml ) Need Help??


in reply to generate self join sql with specified depth level

I've done this at least a couple of times, it's not rocket science.

Something along the lines of...

my $number_of_levels = 5; my $query = 'T1.name AS lev1'; my $join = ''; my $old_table = 'T1'; for(2..$number_of_levels) { $query .= ", T$_.name AS lev$_"; $join .= " LEFT JOIN tab AS T$_ ON T$_.parentID = $old_table.ID"; $old_table = "T$_"; } print $finished_query = "SELECT $query FROM tag AS T1 $join WHERE T1.p +arentID = 0";
That should pretty much do it.

                - Ant
                - Some of my best work - (1 2 3)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://813901]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (5)
As of 2024-04-26 07:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found