Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex DataLens
    • Overview
    • Formula syntax
      • All Functions
        • Overview
        • ABS
        • ACOS
        • ASIN
        • ATAN
        • ATAN2
        • CEILING
        • COMPARE
        • COS
        • COT
        • DEGREES
        • DIV
        • DIV_SAFE
        • EXP
        • FDIV_SAFE
        • FLOOR
        • GREATEST
        • LEAST
        • LN
        • LOG
        • LOG10
        • PI
        • POWER
        • RADIANS
        • ROUND
        • SIGN
        • SIN
        • SQRT
        • SQUARE
        • TAN
      • Function Availability
    • Parameters
  • Audit Trails events
  1. Calculated fields
  2. Function reference
  3. Mathematical functions
  4. LEAST

LEAST

Written by
Yandex Cloud
Improved by
amatol
Updated at November 6, 2024

SyntaxSyntax

LEAST( value_1, value_2, value_3 [ , ... ] )

DescriptionDescription

Returns the smallest value.

See also GREATEST.

Depending on the specified data type, it returns:

  • The smallest number.
  • The first string in alphabetical order.
  • The earliest date.
  • FALSE when selecting between TRUE and FALSE for Boolean type.

Argument types:

  • value_1 — Boolean | Date | Datetime | Fractional number | Integer | String
  • value_2 — Boolean | Date | Datetime | Fractional number | Integer | String
  • value_3 — Boolean | Date | Datetime | Fractional number | Integer | String

Return type: Same type as (value_1, value_2, value_3)

Note

Arguments (value_1, value_2, value_3) must be of the same type.

ExamplesExamples

LEAST(3.4, 2.6) = 2.6
LEAST("3.4", "2.6") = "2.6"
LEAST(#2019-01-02#, #2019-01-17#) = #2019-01-02#
LEAST(#2019-01-02 04:03:02#, #2019-01-17 03:02:01#) = #2019-01-02 04:03:02#
LEAST(TRUE, FALSE) = FALSE
LEAST(34, 5, 7, 3, 99, 1, 2, 2, 56) = 1
LEAST(5.6, 1.2, 7.8, 3.4) = 1.2
LEAST(#2019-01-02#, #2019-01-17#, #2019-01-10#) = #2019-01-02#

Data source supportData source support

ClickHouse 21.8, Files, Google Sheets, Microsoft SQL Server 2017 (14.0), MySQL 5.7, Oracle Database 12c (12.1), PostgreSQL 9.3, Yandex Documents, YDB.

Was the article helpful?

Previous
GREATEST
Next
LN
Yandex project
© 2025 Yandex.Cloud LLC