If it makes clearer, here is a sample table:
CREATE TABLE schema.test
(id integer, arrival timestamp, departure timestamp)
;
INSERT INTO schema.test
(id, arrival, departure)
VALUES
(0, NULL, '2000-01-01 22:00:00.000'),
(1, '2000-01-01 22:30:00.000', '2000-01-01 22:35:00.000'),
(2, '2000-01-01 23:10:00.000', '2000-01-01 23:10:00.000'),
(3, '2000-01-01 23:50:00.000', '2000-01-01 23:55:00.000'),
(4, '2000-01-02 00:10:00.000', '2000-01-02 00:10:00.000'),
(5, '2000-01-02 01:30:00.000', NULL)
;
--
You received this message because you are subscribed to the Google Groups "jOOQ
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.