how do you insert null values into sql server

In sql server enterprise manager, how do you write an insert statement and pass in null values?


Solution 1:

INSERT INTO atable (x,y,z) VALUES ( NULL,NULL,NULL)

Solution 2:

If you're using SSMS (or old school Enterprise Manager) to edit the table directly, press CTRL+0 to add a null.