MINUTE

Learn how to use the MINUTE date/time function in PlaidCloud Lakehouse. Returns the minute from a datetime - see syntax, examples, and output.

Returns the minute from a datetime.

Analyze Syntax

func.minute(<datetime>)

Analyze Examples

func.minute('2024-06-15 14:30:00')

┌────┐
 30  
└────┘

SQL Syntax

MINUTE(<datetime>)

SQL Examples

SELECT MINUTE('2024-06-15 14:30:00');

┌────┐
 30  
└────┘