本文介绍了如何在sql server中设置/插入列的默认值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 亲爱的朋友们, 如何设置/设置默认值,如电子邮件不可用,用于电子邮件列(如果列在Student表中,值为null / empty)。 注意:我不想使用选择查询。 Ex: 学生 SId SName电子邮件地址 1 Raju [email protected]班加罗尔 2 Reddy班加罗尔 3 Sita bangalore 4 Ravi [email protected]班加罗尔 5 Ramu班加罗尔 预期产出 SId SName电子邮件地址 1 Raju [email protected]班加罗尔 2 Reddy Email NA班加罗尔 3 Sita电子邮件NA bangalore 4 Ravi [email protected]班加罗尔 5 Ramu电子邮件NA bangalore 提前致谢。解决方案 Dear Friends,How to set/inset default value like Email is not available for Email column (if column value is null/empty) in Student table.Note: I don't want to use select query.Ex:StudentSId SName Email Address1 Raju [email protected] bangalore2 Reddy bangalore3 Sita bangalore4 Ravi [email protected] bangalore5 Ramu bangaloreExpected OutputSId SName Email Address1 Raju [email protected] bangalore2 Reddy Email NA bangalore3 Sita Email NA bangalore4 Ravi [email protected] bangalore5 Ramu Email NA bangaloreThanks in advance. 解决方案 这篇关于如何在sql server中设置/插入列的默认值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-11 18:01