SQL MAX scalar function in DB2 for i SQL

SQL MAX scalar function in DB2 for i SQL
SQL MAX scalar function in DB2 for i SQL, sql function, db2 sql, ibmi db2
SQL MAX scalar function in DB2 for i SQL

MAX

The MAX function returns the maximum value in a set of values. We should pass at least 2 arguments.

Syntax

MAX(arg1, arg2, arg3, ...)

Example #1:

SELECT MAX(3,2,4,9,7,8) FROM SYSIBM.SYSDUMMY1
     MAX
            9

Example #2:

SELECT MAX(3,2,4,9,7,8,10.1, 11) FROM SYSIBM.SYSDUMMY1
        MAX
            11.0

Example #3:

SELECT MAX('a', 'b', 'c') FROM SYSIBM.SYSDUMMY1
MAX
   c    

Example #4:

SELECT MAX('a', 'b', 'A') FROM SYSIBM.SYSDUMMY1
MAX
   A    

You may like these posts

  • AS400 Interview Questions (DB2)  - part 1Q1: Brief about triggers? What is the purpose of using triggers? Where we use the concept of the trigger in real-time.Answer:Trig…
  • Column Text in DDS and DDL tables The column text is the text provided to each file field when making the file fields to understand the field.Column Text in DDSIn DDS files colu…
  • Primary Key in DDS and DDL tablesKey in the table means the way in which records are fetched from the table. We can have multiple records with a single key or can have only one rec…
  • Data Validation in DDS and DDL tablesData ValidationData validation is one of the most important parts of any application created as the complete application runs on data evaluatio…
  • AS400 Interview Question (DB2) - Part 2Q1: What is the purpose of creating a multi-record format file in real-time?Answer:Multi record format LF in AS400:Combine more than one…
  • CRTPF  and Create Table in IBM iThere are two ways in IBM i in which files can be created that are DDS (CRTPF) and DDL (Create Table).In this article, we will discuss how…

Post a Comment