Inserting rows with NULL fields

suggest change

For example inserting an employee with no phone number and no manager into the Employees example table:

INSERT INTO Employees
    (Id, FName, LName, PhoneNumber, ManagerId, DepartmentId, Salary, HireDate)
VALUES
    (5, 'Jane', 'Doe', NULL, NULL, 2, 800, '2016-07-22') ;

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


NULL:
*Inserting rows with NULL fields

Table Of Contents