ROMAN_NUMERALS_MONTH_UDF

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

Definition

Determines the month of a given date represented in Roman numerals.

PUBLIC.ROMAN_NUMERALS_MONTH_UDF(INPUT TIMESTAMP_TZ)

Parameters

INPUT TIMESTAMP_TZ

The date to get the month from.

Returns

A varchar which is the month of a given date.

Usage example

Input:

SELECT PUBLIC.ROMAN_NUMERALS_MONTH_UDF(DATE '2021-10-26');

Output:

'X'

Last updated