Ah, I see. I used the format 'hour' because with "creation_hour = timepart(creation_time); " without this format, the column creation_hour contained numbers from zero to 86.399 (counting the seconds). But with the correction "creation_hour = hour(creation_time); " the format is indeed not necessary. Thanks a lot to both of you!
... View more