我为这样的表创建Insert
语句organization
:
select'Insert into Organizations(Name,ContactPerson,ContactNumber,Mobilenumber)values('''+Nameofthecompany+''+','+Nameofthepersonresponsibleforrecruitment+','+PhoneNumber+','+MobileNumber+''')' from Organization
当我执行此语句时,我得到插入语句。但问题是值为 null 的地方,它显示所有列null
。
示例:(在数据库中)
- 姓名:xxx
- 联系人:zzzz
- 联系电话:444444
- 手机号码:空
所以我的插入语句看起来像:
Null.
我只希望该列提供空值。其他细节正确显示。sql server有什么办法吗?任何人都帮我...