OceanBase logo

OceanBase

A unified distributed database ready for your transactional, analytical, and AI workloads.

Product Overview
DEPLOY YOUR WAY

OceanBase Cloud

The best way to deploy and scale OceanBase

OceanBase Enterprise

Run and manage OceanBase on your infra

TRY OPEN SOURCE

OceanBase Community Edition

The free, open-source distributed database

OceanBase seekdb

Open source AI native search database

Customer Stories

Real-world success stories from enterprises across diverse industries.

View All
BY USE CASES

Mission-Critical Transactions

Global & Multicloud Application

Elastic Scaling for Peak Traffic

Real-time Analytics

Active Geo-redundancy

Database Consolidation

Resources

Comprehensive knowledge hub for OceanBase.

Blog

Live Demos

Training & Certification

Documentation

Official technical guides, tutorials, API references, and manuals for all OceanBase products.

View All
PRODUCTS

OceanBase Cloud

OceanBase Database

Tools

Connectors and Middleware

QUICK START

OceanBase Cloud

OceanBase Database

BEST PRACTICES

Practical guides for utilizing OceanBase more effectively and conveniently

Company

Learn more about OceanBase – our company, partnerships, and trust and security initiatives.

About OceanBase

Partner

Trust Center

Contact Us

International - English
中国站 - 简体中文
日本 - 日本語
Sign In
Start on Cloud

OceanBase

A unified distributed database ready for your transactional, analytical, and AI workloads.

Product Overview
DEPLOY YOUR WAY

OceanBase Cloud

The best way to deploy and scale OceanBase

OceanBase Enterprise

Run and manage OceanBase on your infra

TRY OPEN SOURCE

OceanBase Community Edition

The free, open-source distributed database

OceanBase seekdb

Open source AI native search database

Customer Stories

Real-world success stories from enterprises across diverse industries.

View All
BY USE CASES

Mission-Critical Transactions

Global & Multicloud Application

Elastic Scaling for Peak Traffic

Real-time Analytics

Active Geo-redundancy

Database Consolidation

Comprehensive knowledge hub for OceanBase.

Blog

Live Demos

Training & Certification

Documentation

Official technical guides, tutorials, API references, and manuals for all OceanBase products.

View All
PRODUCTS
OceanBase CloudOceanBase Database
ToolsConnectors and Middleware
QUICK START
OceanBase CloudOceanBase Database
BEST PRACTICES

Practical guides for utilizing OceanBase more effectively and conveniently

Learn more about OceanBase – our company, partnerships, and trust and security initiatives.

About OceanBase

Partner

Trust Center

Contact Us

Start on Cloud
编组
All Products
    • Databases
    • iconOceanBase Database
    • iconOceanBase Cloud
    • iconOceanBase Tugraph
    • iconInteractive Tutorials
    • iconOceanBase Best Practices
    • Tools
    • iconOceanBase Cloud Platform
    • iconOceanBase Migration Service
    • iconOceanBase Developer Center
    • iconOceanBase Migration Assessment
    • iconOceanBase Admin Tool
    • iconOceanBase Loader and Dumper
    • iconOceanBase Deployer
    • iconKubernetes operator for OceanBase
    • iconOceanBase Diagnostic Tool
    • iconOceanBase Binlog Service
    • Connectors and Middleware
    • iconOceanBase Database Proxy
    • iconEmbedded SQL in C for OceanBase
    • iconOceanBase Call Interface
    • iconOceanBase Connector/C
    • iconOceanBase Connector/J
    • iconOceanBase Connector/ODBC
    • iconOceanBase Connector/NET
icon

OceanBase Database

SQL - V4.2.1

    Download PDF

    OceanBase logo

    The Unified Distributed Database for the AI Era.

    Follow Us
    Products
    OceanBase CloudOceanBase EnterpriseOceanBase Community EditionOceanBase seekdb
    Resources
    DocsBlogLive DemosTraining & CertificationTicket
    Company
    About OceanBaseTrust CenterLegalPartnerContact Us
    Follow Us

    © OceanBase 2026. All rights reserved

    Cloud Service AgreementPrivacy PolicySecurity
    Contact Us
    Document Feedback
    1. Documentation Center
    2. OceanBase Database
    3. SQL
    4. V4.2.1
    iconOceanBase Database
    SQL - V 4.2.1
    SQL
    KV
    • V 4.6.0
    • V 4.4.2
    • V 4.3.5
    • V 4.3.3
    • V 4.3.1
    • V 4.3.0
    • V 4.2.5
    • V 4.2.2
    • V 4.2.1
    • V 4.2.0
    • V 4.1.0
    • V 4.0.0
    • V 3.1.4 and earlier

    LAST_VALUE

    Last Updated:2026-04-28 09:23:26  Updated
    share
    What is on this page
    Purpose
    Syntax
    Parameters
    Return type
    Examples

    folded

    share

    Purpose

    LAST_VALUE() is an analytic function. It returns the last value in an ordered value group. If the last value in the set is NULL, the function returns NULL unless you specify IGNORE NULLS, which is useful for data densification.

    Syntax

    LAST_VALUE { (expr) [{RESPECT | IGNORE} NULLS ]
                | (expr [{RESPECT | IGNORE} NULLS ])
                }
    OVER (analytic_clause)
    

    Parameters

    Parameter
    Description
    expr The sequence.
    Notice: You cannot nest expr in analytic functions such as LAST_VALUE().
    {RESPECT | IGNORE} NULLS Optional. Specifies whether to ignore NULLs. Default value: RESPECT NULLS.
    • RESPECT NULLS specifies to include NULLs in the calculation.
    • IGNORE NULLS specifies to ignore NULLs in the calculation.
    OVER You can use the OVER clause to define a window over the data on which the function operates. For more information, see Analytic functions.

    Return type

    The return type is the same as the data type of expr, or this function returns NULL.

    Examples

    The table emp_msg has been created. Sort data records in the emp_msg table by the sal column in ascending order, and fill the last non-NULL value in the mgr column to the last_mgr column.

    obclient> SELECT * FROM emp_msg;
    +--------+--------+------+------+
    | DEPTNO | ENAME  | SAL  | MGR  |
    +--------+--------+------+------+
    |     10 | CLARK  | 2750 | 7839 |
    |     10 | KING   | 5300 | NULL |
    |     10 | MILLER | 1600 | 7782 |
    |     20 | ADAMS  | 1400 | 7788 |
    |     20 | FORD   | 3300 | 7566 |
    |     20 | JONES  | 3275 | 7839 |
    |     20 | SCOTT  | 3300 | 7566 |
    |     20 | SMITH  | 1100 | 7902 |
    |     30 | ALLEN  | 1900 | 7698 |
    |     30 | BLAKE  | 3150 | 7839 |
    |     30 | JAMES  | 1250 | 7698 |
    |     30 | MARTIN | 1550 | 7698 |
    |     30 | TURNER | 1800 | 7698 |
    |     30 | WARD   | 1550 | 7698 |
    |     30 | SCLARK | 1750 | 7839 |
    +--------+--------+------+------+
    15 rows in set
    
    obclient> SELECT deptno,ename,sal,mgr,
                LAST_VALUE (mgr) IGNORE NULLS OVER (ORDER BY sal ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) AS last_mgr
        FROM emp_msg;
    +--------+--------+------+------+----------+
    | DEPTNO | ENAME  | SAL  | MGR  | LAST_MGR |
    +--------+--------+------+------+----------+
    |     20 | SMITH  | 1100 | 7902 | 7566     |
    |     30 | JAMES  | 1250 | 7698 | 7566     |
    |     20 | ADAMS  | 1400 | 7788 | 7566     |
    |     30 | MARTIN | 1550 | 7698 | 7566     |
    |     30 | WARD   | 1550 | 7698 | 7566     |
    |     10 | MILLER | 1600 | 7782 | 7566     |
    |     30 | SCLARK | 1750 | 7839 | 7566     |
    |     30 | TURNER | 1800 | 7698 | 7566     |
    |     30 | ALLEN  | 1900 | 7698 | 7566     |
    |     10 | CLARK  | 2750 | 7839 | 7566     |
    |     30 | BLAKE  | 3150 | 7839 | 7566     |
    |     20 | JONES  | 3275 | 7839 | 7566     |
    |     20 | FORD   | 3300 | 7566 | 7566     |
    |     20 | SCOTT  | 3300 | 7566 | 7566     |
    |     10 | KING   | 5300 | NULL | 7566     |
    +--------+--------+------+------+----------+
    15 rows in set
    

    Previous topic

    LAG
    Last

    Next topic

    LEAD
    Next
    What is on this page
    Purpose
    Syntax
    Parameters
    Return type
    Examples