Datenbank in SQL insert into?

2 Antworten

am Datetime hängt auch die Uhrzeit, das Format ist z.B. '2022-12-24 19:30:00'

Erst mal brauchst du nicht datetime und timestamp. Beide speichern jeweils Datum und Uhrzeit.

Hier findest du alle weiteren Informationen über datetime und timestamp in MySQL: https://dev.mysql.com/doc/refman/8.0/en/datetime.html

The DATETIME type is used for values that contain both date and time parts. MySQL retrieves and displays DATETIME values in 'YYYY-MM-DD hh:mm:ss' format. The supported range is '1000-01-01 00:00:00' to '9999-12-31 23:59:59'.
The TIMESTAMP data type is used for values that contain both date and time parts. TIMESTAMP has a range of '1970-01-01 00:00:01' UTC to '2038-01-19 03:14:07' UTC.