SQL> INSERT INTOtdept (deptno, dname ) 2 VALUEStt(60, 'MIS'); 1 row created. t明确的方法:指定NULL关键字. SQL> INSERT INTOtdept 2 VALUEStt(70, 'FINANCE', NULL); 1 row created. t省略的方法:从列的链表忽略有空值的列. * Methods for Inserting Null Values Be sure that the targeted column allows null values by verifying the Null? status from the SQL*Plus DESCRIBE command. The Oracle Server automatically enforces all datatypes, data ranges, and data integrity constraints. Any column that is not listed explicitly obtains a null value in the new row. Instructor Note Common errors that can occur during user input: Mandatory value missing for a NOT NULL column Duplicate value violates uniqueness constraint Foreign key constraint violated CHECK constraint violated Datatype mismatch Value too wide to fit in column