MONTH_SHORT_UDF

This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.

Definition

Determines the short name of a month either in uppercase, lowercase, or capitalized.

PUBLIC.MONTH_SHORT_UDF(INPUT TIMESTAMP_TZ, RESULTCASE VARCHAR)

Parameters

INPUT TIMESTAMP_TZ

The date to take the short name of the month.

RESULTCASE VARCHAR

The case result to be represented, accepted values are 'uppercase', 'lowercase', and 'firstOnly'.

Returns

A varchar which is the short name of a month.

Usage example

Input:

SELECT PUBLIC.MONTH_SHORT_UDF(DATE '2021-10-26', 'uppercase');
SELECT PUBLIC.MONTH_SHORT_UDF(DATE '2021-10-26', 'lowercase');
SELECT PUBLIC.MONTH_SHORT_UDF(DATE '2021-10-26', 'firstOnly');

Output:

OCT
oct
Oct

Last updated