Uploaded image for project: 'Derby'
  1. Derby
  2. DERBY-6581

Document simple case syntax

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 10.11.1.1
    • 10.11.1.1
    • Documentation
    • None

    Description

      We should document the new syntax added in DERBY-1576 in the CASE expression topic of the reference manual.

      The variant that is currently documented in the CASE expression topic, is called "searched case". It should still be documented. In addition, the topic should show this syntax for "simple case":

      CASE valueExpression
        WHEN whenOperand [, whenOperand ]* THEN thenExpression
        [ WHEN whenOperand [, whenOperand ]* THEN thenExpression ]*
        [ ELSE elseExpression ]
      END
      

      whenOperand could be defined like this:

      valueExpression |
      { < | = | > | <= | >= | <> } expression |
      IS [ NOT ] NULL |
      [ NOT ] LIKE characterExpression WithWildCard [ ESCAPE 'escapeCharacter'] |
      [ NOT ] BETWEEN expression AND expression |
      [ NOT ] IN tableSubquery |
      [ NOT ] IN ( expression [, expression ]* ) |
      comparisonOperator { ALL | ANY | SOME } tableSubquery
      

      Most of this syntax is copied from the table in the Boolean expressions topic, so we may try to find some way to refactor it to avoid repetition here.

      There are some inconsistencies in this definition of whenOperand. One is that I think all occurrences of "expression" could be replaced with "valueExpression". Another is that line 2 lists all comparison operators explicitly, whereas line 8 uses the shorthand "comparisonOperator". I suppose both should do the same. If we choose to use the shorthand, we should probably also define comparisonOperator somewhere.

      Examples:

      -- returns 'two'
      VALUES
        CASE 1+1
          WHEN 1 THEN 'one'
          WHEN 2 THEN 'two'
          ELSE 'many'
        END
      
      -- returns 'odd', 'even', 'big'
      SELECT
        CASE X
          WHEN 1, 3, 5, 7, 9 THEN 'odd'
          WHEN 2, 4, 6, 8, 10 THEN 'even'
          ELSE 'big'
        END
      FROM
        (VALUES 5, 8, 12) AS V(X)
      
      -- returns ('long', 182), ('medium', 340), ('short', 20)
      SELECT DISTANCE, COUNT(*)
      FROM (SELECT
              CASE MILES
                WHEN < 250 THEN 'short'
                WHEN BETWEEN 250 AND 2000 THEN 'medium'
                WHEN > 2000 THEN 'long'
              END
            FROM FLIGHTS) AS F(DISTANCE)
      GROUP BY DISTANCE
      

      Attachments

        1. rrefcase.html
          9 kB
          Camilla Haase
        2. DERBY-6581.diff
          5 kB
          Camilla Haase
        3. DERBY-6581-2.diff
          5 kB
          Camilla Haase
        4. rrefcase.html
          9 kB
          Camilla Haase

        Issue Links

          Activity

            People

              chaase3 Camilla Haase
              knutanders Knut Anders Hatlen
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: