连接具有 NULL 值的列
我想在 VS 数据集设计器的 TableAdapter 向导中连接两个列。 问题在于,一列具有 NULL 值,因此无论另一列的值如何,串联都会导致 NULL。 我发现我必须SET CONCAT_NULL_YIELDS_NULL OFF,这是数据库选项。 如何在 TableAdapter 查询生成器中更改此设置?还有其他选择吗?
I want to concat two Columns in the TableAdapter Wizard of the VS Dataset-Designer.
The problem is that one column has NULL-Values and hence the concatination results in NULL regardless of the value of the other column.
I've found out that i must SET CONCAT_NULL_YIELDS_NULL OFF, which is a Database option.
How can i change this setting in a TableAdapter Query Builder? Is there an alternative?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我已经通过以下方式解决了它:
Ok, i've solved it in the following way: