20
Sat, Apr
5 New Articles

Practical SQL: Don't Be Afraid of Recursion

SQL
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

A word that sometimes strikes fear into the programmers, "recursion" is sometimes the only tool for the job, and this article shows you how to recurse in SQL.

 

Today's article is very simple and straightforward. I'm going to present you with one of the more complex basic SQL statements you'll run across and then break it down piece by piece. I know that the "complex basic" seems somewhat paradoxical, but it's not. The SQL statement I'll be showing you is basic because it has no frills; pretty much everything in the statement is needed to do what we need to do. At the same time, the statement is complex because even at its minimum the statement requires a lot of moving parts. Fear not, gentle reader, I shall act as your guide through this dangerous territory, and at the end, you'll have yet one more powerful weapon in your programming arsenal.

The Database

Before we get to the SQL, let's take a look at the data. First, the relevant portion of the DDS source for the customer master file, CUSMAS:

 

R CUSMASR

CMCUST         6  0

CMCORP         6  0

CMNAME        50

 

I've highlighted three fields: the customer number (CMCUST); the corporate customer number, or parent, (CMCORP); and the customer name (CMNAME). Now let's look at the data in the file.

 

CMCUST    CMCORP   CMNAME

800,000         0   Top of the Food Chain

801,000   800,000   West Coast Outlet

801,100   801,000   California Unit

801,101   801,000   Washington State Unit

802,000   800,000   East Coast Outlet

802,100   802,000   Illinois Unit

 

This isn't the entire file, just the records that are specifically relevant to this discussion. These records define a fictitious organization with several levels, the highest level being the corporation Top of the Food Chain, customer number 800000. You can tell it's a top-level organization because it has no parent (CMCORP is zero). Top of the Food Chain has two outlets, one on the west coast and one on the east coast. West Coast Outlet has a customer number of 801000 and a parent of 800000. East Coast Outlet is similar, but with a customer number of 802000. That's it for the second level in the hierarchy. West Coast Outlet has two children, California Unit and Washington State Unit, while East Coast Outlet has only one child, Illinois Unit (yes, I know it's stretching it to put Illinois on the east coast, but bear with me for this example).

The SQL Statement

The business issue is simple. Can I use SQL to iterate through all the parents of a given entity? The answer is absolutely yes, although it takes a little work  The statement to get all the parents and grandparents for customer 802100 is shown below:

 

with Corporate (ID, Parent, Name) as (

select

CMCUST as Id, CMCORP as Parent, CMNAME as Name

from CUSMAS

where CMCUST = 802100

union all

select

CMCUST as Id, CMCORP as Parent, CMNAME as Name

from CUSMAS

join Corporate on

Corporate.Parent = CMCUST

) select * from Corporate

As I noted before, this is a basic but complex statement. There really isn't anything here that can be left out, so I will walk you through each part of the statement. Let me start, though, by explaining the underlying concept. What happens here is that we have defined a common table expression (CTE), and we join that against itself using a UNION. The first half of the UNION is an initial SELECT that defines the root of the query, while the other half is a JOIN that defines the relationship used to get the next level of data. SQL is then smart enough to execute this JOIN over and over until all levels are read (I'm not sure how that magic works; my guess is that the SQL engine repeats the JOIN until it returns no records).

 

OK, on to the statement, piece by piece.

 

with Corporate (ID, Parent, Name) as (

This is the defining statement. It lays out all of the elements that will be returned from the query. These names don't have to be the same as they are in the file, and indeed you might find it easier to make your own longer, more intuitive names for the fields in the database. In this case, I want the final result to contain the customer ID, the parent customer, and the name. The with/as syntax is standard for CTEs; note the left parenthesis that identifies the start of the SELECT statement that populates the CTE.

 

select

CMCUST as Id, CMCORP as Parent, CMNAME as Name

from CUSMAS

where CMCUST = 802100

 

And this is that statement. Remember, I said there are two components connected via a UNION. The first is the "seed" statement. That starts the initial query. In this case, I've hard-coded it to select a specific customer, but in a more generic application (say in an embedded SQL RPG program), you'd probably use a host variable to contain the seed value. The point is that this first SELECT statement gets the initial record(s) that will then be processed recursively. In this example, I want CMCUST, CMCORP, and CMNAME, but I have to rename them to match the names in the original CTE (thus the AS modifier on each field).

 

union all

 

This merges the two halves together. This must be a UNION ALL or else the query will fail with SQL error -342. If you want to remove duplicates, you'll have to do it on the final SELECT.

 

select

CMCUST as Id, CMCORP as Parent, CMNAME as Name

from CUSMAS

join Corporate on

Corporate.Parent = CMCUST

 

This is the part of the statement that actually defines the business logic of the recursion. Note that the first three lines simply repeat the original SELECT statement from the first half. That's the nature of a recursive relationship like this; each iteration gets more records from the same table. The recursion is defined in the JOIN, where the next set of records is selected by joining to the CTE using the business relationship. In this case, I am asking for records in the table CUSMAS where the customer field (CMCUST) matches the Parent field (which is CMCORP) in the CTE. Put in English, I am asking for all the parents of the records currently in the CTE. SQL magic then occurs: the new records are added, and the same statement is run on those records. This repeats until no new records are found.

 

) select * from Corporate

 

And this is the finale. Now that the CTE (Corporate) has all the records I need, I can select them and process them as needed. In this case, I just want to list them, and when I do, I see this:

 

ID    PARENT   NAME

802,100   802,000   Illinois Unit

802,000   800,000   East Coast Outlet

800,000         0   Top of the Food Chain

 

The seed row is the first row shown, Illinois Unit (customer 802100). The first iteration of the JOIN then retrieved that record's immediate parent, 802000, East Coast Outlet. The final iteration returned the Top of the Food Chain, customer 800000. This is exactly what was expected and a perfect illustration of recursion in action.

Other Uses

This is only one of an entire class of business problems that can be solved by recursion. A tweak here or there, and the same basic technique can provide other results. For example, on the final select, add the clause "where CMCORP = 0" and you'll get only the highest-level parent. Switch the inner join to "Corporate.ID = CMCORP" and now instead of parents, you'll get children.

 

And this isn't limited to a strict one-to-one or even one-to-many relationship, either. Take the classic many-to-many relationship, the bill of materials (BOM) in manufacturing. A parent item will have many components, and conversely a component item can have many parents. The relationship can go many levels deep. Finding all children and their children for an item is a multi-level BOM explosion, while finding all the parents of a component gives you a where-used query, which can also be used to roll costs up or to drive net change MRP regeneration.

 

Recursion in SQL is a powerful tool, and once you're comfortable with it, I'm certain you'll find a lot more uses for it in your business applications.

 

Joe Pluta

Joe Pluta is the founder and chief architect of Pluta Brothers Design, Inc. He has been extending the IBM midrange since the days of the IBM System/3. Joe uses WebSphere extensively, especially as the base for PSC/400, the only product that can move your legacy systems to the Web using simple green-screen commands. He has written several books, including Developing Web 2.0 Applications with EGL for IBM i, E-Deployment: The Fastest Path to the Web, Eclipse: Step by Step, and WDSC: Step by Step. Joe performs onsite mentoring and speaks at user groups around the country. You can reach him at This email address is being protected from spambots. You need JavaScript enabled to view it..


MC Press books written by Joe Pluta available now on the MC Press Bookstore.

Developing Web 2.0 Applications with EGL for IBM i Developing Web 2.0 Applications with EGL for IBM i
Joe Pluta introduces you to EGL Rich UI and IBM’s Rational Developer for the IBM i platform.
List Price $39.95

Now On Sale

WDSC: Step by Step WDSC: Step by Step
Discover incredibly powerful WDSC with this easy-to-understand yet thorough introduction.
List Price $74.95

Now On Sale

Eclipse: Step by Step Eclipse: Step by Step
Quickly get up to speed and productivity using Eclipse.
List Price $59.00

Now On Sale

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: