Skip to content

Converts a specified number of centuries into an Interval type.

  • Accepts positive integers, zero, and negative integers as input.
func.to_centuries(<centuries>)
func.to_centuries(2)
┌──────────────────────────────────────────────────────┐
│ func.to_centuries(2) │
├──────────────────────────────────────────────────────┤
200 years │
└──────────────────────────────────────────────────────┘
TO_CENTURIES(<centuries>)

Interval (represented in years).

SELECT TO_CENTURIES(2), TO_CENTURIES(0), TO_CENTURIES(-2);
┌───────────────────────────────────────────────────────┐
│ to_centuries(2) │ to_centuries(0) │ to_centuries(- 2) │
├─────────────────┼─────────────────┼───────────────────┤
200 years │ 00:00:00-200 years │
└───────────────────────────────────────────────────────┘