• The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact
Menu
  • The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact
  • Let One Row Represent a Group, Take 2

    October 27, 2010 Ted Holt

    Let’s return to a problem I wrote about a few months ago. The technique I illustrated in that article works for most implementations of SQL. Today it’s my pleasure to share a technique you can use with versions of SQL that include certain OLAP functions, such as DB2 for i V5R4 or above.

    You’ve been asked to list customer orders that have not been fully shipped, but you are to only show the first unshipped line of each order. Use the RANK() function to assign a sequential number to each row for each order, like this:

    select OrderNo, LineNo, QtyOrdered - QtyShipped as Balance,
           substr(char(CrtTime), 1, 16) as TimeEntered,
           rank() over
              (partition by OrderNo order by CrtTime) as OrderRank
         from salesordd
        where QtyShipped < QtyOrdered
    
    • RANK() OVER means that SQL is to number the rows.
    • ORDER BY CrtTime means that the rows are to be numbered in sequence according to the CrtTime field.
    • PARTITION BY OrderNo means that the numbering is to restart at 1 for each order number. Without PARTITION BY, the entire result set would be numbered in one sequence.

    This is the result set:

    ORDERNO  LINENO   BALANCE   TIMEENTERED       ORDERRANK
        101      2         12   2010-04-21-11.15          1
        102      1          5   2010-04-21-10.05          1
        102      2        100   2010-04-21-10.15          2
        103      3          5   2010-04-21-14.37          1
        105      2          6   2010-04-21-10.30          1
    

    Notice that there are two unshipped lines for order 102. In order to get only one line per order, you must select the rows with a rank value of 1. However, it is not permitted to refer to the ranking column in the WHERE clause. To get around this limitation, put the result set into something temporary, such as a common table expression:

    with Temp as 
      (select d.*, 
              rank() over
                (partition by OrderNo order by CrtTime) as OrderRank
         from salesordd as d
        where QtyShipped < QtyOrdered)
        
    select t.OrderNo, t.LineNo, t.QtyOrdered, t.QtyShipped,
           (t.QtyOrdered - t.QtyShipped) as Balance, t.Price,
           (t.QtyOrdered - t.QtyShipped) * t.Price as Extended,
           substr(char(t.crttime), 1, 16) as TimeEntered 
      from temp as t
     where t.OrderRank = 1
    

    Or a derived table:

    select t.OrderNo, t.LineNo, t.QtyOrdered, t.QtyShipped,
           (t.QtyOrdered - t.QtyShipped) as Balance, t.Price,
           (t.QtyOrdered - t.QtyShipped) * t.Price as Extended,
           substr(char(t.crttime), 1, 16) as TimeEntered
      from 
      (select d.*,
              rank() over
                (partition by OrderNo order by CrtTime) as OrderRank
         from salesordd as d
        where QtyShipped < QtyOrdered) as t
     where t.OrderRank = 1
    

    Either way, here’s the result set:

    ORDER  LINE  ORDERED  SHIPPED   BALANCE   PRICE  EXTENDED  TIMEENTERED
      101    2        12        0        12    1.00     12.00  2010-04-21-11.15
      102    1        10        5         5    2.00     10.00  2010-04-21-10.05
      103    3         5        0         5    1.10      5.50  2010-04-21-14.37
      105    2         6        0         6    2.00     12.00  2010-04-21-10.30
    

    RELATED STORIES

    Let One Row Represent a Group

    New in V5R4: OLAP Ranking Specifications



                         Post this story to del.icio.us
                   Post this story to Digg
        Post this story to Slashdot

    Share this:

    • Reddit
    • Facebook
    • LinkedIn
    • Twitter
    • Email

    Tags:

    Sponsored by
    CloudSAFE

    CloudSAFE – for secure, scalable hosting and managed services for IBM i environments, delivering high availability, 24×7 monitoring, backup, recovery, and expert support to modernize operations, reduce risk, and ensure always-on performance reliably.

    LEARN MORE

    Share this:

    • Reddit
    • Facebook
    • LinkedIn
    • Twitter
    • Email

    Sponsored Links

    PowerTech:  FREE Webinar! Protect IBM i Data from FTP, ODBC, & Remote Command. Nov. 3, 10 am CT
    iSeries DevCon2010:  Get 3 days of IBM i training and 365 DAYS OF VALUE, Nov 15-17, Las Vegas
    Bsafe Information Systems:  Webcast: Top 5 System i Vulnerabilities. Oct 27. 2 p.m. EST

    IT Jungle Store Top Book Picks

    BACK IN STOCK: Easy Steps to Internet Programming for System i: List Price, $49.95

    The iSeries Express Web Implementer's Guide: List Price, $49.95
    The iSeries Pocket Database Guide: List Price, $59
    The iSeries Pocket SQL Guide: List Price, $59
    The iSeries Pocket WebFacing Primer: List Price, $39
    Migrating to WebSphere Express for iSeries: List Price, $49
    Getting Started with WebSphere Express for iSeries: List Price, $49
    The All-Everything Operating System: List Price, $35
    The Best Joomla! Tutorial Ever!: List Price, $19.95

    DDS Design: The RD Power Way Printing Multiple PC5250 Screens at the Same Time

    Leave a Reply Cancel reply

Volume 10, Number 33 -- October 27, 2010
THIS ISSUE SPONSORED BY:

ProData Computer Services
WorksRight Software
inFORM Decisions

Table of Contents

  • DDS Design: The RD Power Way
  • Let One Row Represent a Group, Take 2
  • Printing Multiple PC5250 Screens at the Same Time

Content archive

  • The Four Hundred
  • Four Hundred Stuff
  • Four Hundred Guru

Recent Posts

  • Spring IBM i Tech Refreshes Will Come A Bit Later This Year
  • You Are Much More Than Power Systems, And So Are We
  • Startup Seeks The “Golden Path” for IBM i Modernization
  • What Can IBM Do To Make The Future Power S1112 Mini System Compelling?
  • IBM i PTF Guide, Volume 28, Number 15
  • Bob 1.0 Users Bugged By Lack Of One Feature
  • Here Come The AI-Based Code Modernization Offerings
  • Guru: Cohesion First – What A Procedure Should Be Responsible For
  • IBM Offers Trade-Ins On Storage To Grease The Upgrade Skids
  • IBM i PTF Guide, Volume 28, Number 14

Subscribe

To get news from IT Jungle sent to your inbox every week, subscribe to our newsletter.

Pages

  • About Us
  • Contact
  • Contributors
  • Four Hundred Monitor
  • IBM i PTF Guide
  • Media Kit
  • Subscribe

Search

Copyright © 2025 IT Jungle