连接具有 NULL 值的列

发布于 2024-09-10 18:19:31 字数 266 浏览 4 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梅倚清风 2024-09-17 18:19:31

好的,我已经通过以下方式解决了它:

tabSparePart.SparePartName + ' ' + ISNULL(tabSparePart.SparePartDescription, '') AS LongSparePartName

Ok, i've solved it in the following way:

tabSparePart.SparePartName + ' ' + ISNULL(tabSparePart.SparePartDescription, '') AS LongSparePartName
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文