I have mySQL Ver 3.23.52, The problem is, It accept Null values in fields that I have defined it to do not
accept NUll, Like this example
ALTER TABLE personnel CHANGE firstname firstname VARCHAR( 25 ) NOT NULL
Then it accept the following insert record Althogh All fields was set to be not Null
INSERT INTO personnel ( id , firstname , lastname , nick , email , salary )
VALUES (
'', '', '', '', '', '0'
);
So Why this's happen?! And what's the solution?😕