mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
11 lines
181 B
Text
11 lines
181 B
Text
|
create table t1 (d date);
|
||
|
insert into t1 values ('2012-00-00');
|
||
|
select * from t1;
|
||
|
d
|
||
|
2012-00-00
|
||
|
update t1 set d = adddate(d, interval 1 day);
|
||
|
select * from t1;
|
||
|
d
|
||
|
NULL
|
||
|
drop table t1;
|