| [ Web Proxy ] |
| Viewing: https://riptutorial.com/sql/example/11808/inserting-rows-with-null-fields | [Back] [Original] |
[logo rip]
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') ;
| Web Proxy Viewer | New URL | Original Page |