Help for this page

Select Code to Download


  1. or download this
    mysql> create table foo (Year year(2) default null);
    Query OK, 0 rows affected (0.06 sec)
    ...
    | NULL |
    +------+
    2 rows in set (0.01 sec)
    
  2. or download this
    mysql> insert into foo values ();
    Query OK, 1 row affected (0.00 sec)
    ...
    | NULL |
    | NULL |
    +------+