how do you insert null values into sql server

后端 未结 2 1194
春和景丽
春和景丽 2020-12-24 00:14

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

相关标签:
2条回答
  • 2020-12-24 00:55
    INSERT INTO atable (x,y,z) VALUES ( NULL,NULL,NULL)
    
    0 讨论(0)
  • 2020-12-24 01:00

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

    0 讨论(0)
提交回复
热议问题