我正在尝试插入一个查询:insert into Table(ID,Value,Date) Values('Test1', '33', '20210315 11:15:27.059')
使用ODBC驱动程序(Maria 3.1(到MariaDB,但我有这个错误:
异常消息:ERROR[22007][ma-3.1.11][10.2.15-MariaDB]日期时间值不正确:'2021031511:15:27.059对于第1行的"date"列,我认为这种格式"20210315 11:15:27.059"是MariaDB无法支持的。
你能帮我更改数据库中的时间格式吗。
谢谢。
我忘记了哪些格式可以作为日期/时间戳文本接受的确切规则。但是,我确信以下格式是可以接受的:
2021-03-15 11:15:27.059
您的更新代码:
INSERT INTO yourTable (ID, Value, Date)
VALUES ('Test1', '33', '2021-03-15 11:15:27.059');