is it necessary to declare \"NOT NULL\" constraints for primary keys in the MySQL database? A primary key cannot have NULL values because it auto_increments anyway and auto
WE need not declare explicitly the column as not null because Primary key constraint makes the column NOT NULL. I have checked in Oracle.