Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

MySQL에서 '0000-00-00'을 날짜로 어떻게 저장할 수 있습니까?


'0000-00-00'과 같은 날짜를 MySQL 테이블의 열에 저장하려면 SQL 모드를 'allow_invalid_date'로 설정해야 합니다. 다음 예는 그것을 보여줄 것입니다 -

mysql> SET sql_mode = 'allow_invalid_dates';
Query OK, 0 rows affected, 1 warning (0.03 sec)

mysql> Create table test_date(date_order date);
Query OK, 0 rows affected (0.45 sec)

mysql> Insert into test_date(date_order) values('0000-00-00');
Query OK, 1 row affected (0.04 sec)

mysql> Select * from test_date;
+------------+
| date_order |
+------------+
| 0000-00-00 |
+------------+
1 row in set (0.00 sec)