By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
CREATE TABLE t
("id" int, "dt" datetime)
;
INSERT INTO t
("id", "dt")
VALUES
(12345, '2022-08-25 08:45:00'),
(12345, '2022-08-25 09:45:00'),
(12345, '2022-08-25 13:00:00'),
(12345, '2022-08-25 13:30:00'),
(23456, '2022-08-25 10:00:00'),
(23456, '2022-08-25 11:00:00')
6 rows affected