I'm new to the Mysql,so i'm getting the problem while passing the null value to date field from the python script calling the procedure.Can you please help me out
I have table in mysql db_test with fields name and date,date column allows null value.
i call the procedure from python like these
cursor.execute("CALL date_insert(%s,%s) ;" %('john',None))
But it shows an error
Error No:1292 Incorrect value 'None' for the date column