The following statement creates a table with an INTERVAL MINUTE column:
CREATE TABLE TimeInfo (Id INTEGER ,Offset INTERVAL MINUTE (4)); INSERT TimeInfo (1001, INTERVAL '2400' MINUTE);
The following statement creates a table with an INTERVAL MINUTE column:
CREATE TABLE TimeInfo (Id INTEGER ,Offset INTERVAL MINUTE (4)); INSERT TimeInfo (1001, INTERVAL '2400' MINUTE);