How to assign null to mysqldate
The method of assigning null to mysql date: first connect to the MySQL server through the client, use the use keyword to complete the database selection operation; then create a table, and insert NULL into the date data type in the time field. 3. Create a simple table, where the date time format supports NULL assignment, example: create table user( id int(10) auto_increment primary key, time date); More related free learning recommendations: mysql tutorial (video) The above is how to assign mysql date For more details about null, please pay attention to other related articles on 1024programmer.com!