#DATE  yyyy-mm-dd format
#TIME  HH:MM:SS
#DATETIME yyyy-mm-dd HH:MM:SS

CREATE TABLE PERSON(
    jd DATE,
    jt TIME,
    jdt DATETIME
);

INSERT INTO PERSON (jd,jt,jdt) values ('2025-06-01','9:55:00','2025-06-02 9:00:00');
select * from PERSON;

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: