In Oracle, we have a keyword ‘TIMESTAMP’ which will help you to insert timestamps.
You can do it with reference to the below query:
INSERT INTO your_table_name (timestamp_column)
VALUES (TO_TIMESTAMP('2024-08-28 10:30:00', 'YYYY-MM-DD HH24:MI:SS'));
The above query will help you change your string input to timestamps that are in year-month-date hour-minutes-seconds (TO_TIMESTAMP)
INSERT INTO your_table_name (timestamp_column)
VALUES (SYSTIMESTAMP);
The above query will help you to give the current time value of your system with its time zone. ( SYSTIMESTAMP)