具有计算列类型的 SQL 视图变为可为空

发布于 2024-11-09 01:17:26 字数 260 浏览 0 评论 0原文

我有一个 sql 表视图,其中计算其中一列: 0.1 * [column_name] 其中 [column_name] 的类型不是 Decimal NULL

由于某种原因,接收到的视图字段变为Decimal NULL

为什么NOT NULL更改为NULL

问候 马里尤什

I have got a sql table view where one of the columns is calculated: 0.1 * [column_name] where [column_name] is of type Decimal not NULL.

Received view field becomes Decimal NULL because of some reason.

Why NOT NULL changes to NULL?

Regards
Mariusz

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

风轻花落早 2024-11-16 01:17:26

您可以通过将其包装在 ISNULL 中来强制它恢复为非空:

create table T (
    Value decimal(38,12) not null
)
go
create view V1
as
    select 0.1 * Value as Value from T
go
create view V2
as
    select ISNULL(0.1 * Value,0) as Value from T
go

V1 的值列被标记为可为空,而 V2 则不是。奇怪的是,这是一个您无法使用更符合标准的 COALESCE 的地方:

create view V3
as
    select COALESCE(0.1 * Value,0) as Value from T
go

V3 类似于 V1。

You can force it back to being not null by wrapping it in an ISNULL:

create table T (
    Value decimal(38,12) not null
)
go
create view V1
as
    select 0.1 * Value as Value from T
go
create view V2
as
    select ISNULL(0.1 * Value,0) as Value from T
go

V1's value column is marked as nullable, V2's isn't. Strangely, this is one place where you can't use the more standards compliant COALESCE:

create view V3
as
    select COALESCE(0.1 * Value,0) as Value from T
go

V3 resembles V1.

伏妖词 2024-11-16 01:17:26

您忘记发布代码,但这可能是因为左连接或右连接找不到匹配的行...

You forgot to post your code, but it's probably because a left or right join found no matching row...

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