gpt4 book ai didi

SQL - 选择 null 作为 FIELDNAME?

转载 作者:行者123 更新时间:2023-12-04 05:34:51 24 4
gpt4 key购买 nike

我遇到了一些代码

select null as UnitCost,
null as MarkUp

这到底是做什么的?获取字段名称 unitcost 和 markup 吗?

为什么要使用“select null as...”?

对此很抱歉。

谢谢。

最佳答案

该代码将值 null 取别名并将其称为 UnitCost/MarkUp。它没有从任何可用表中选择该列。

当语句需要匹配列集时,您通常会看到这种情况,例如联合所有.

select id, col1, col2, null as UnitCost, null as MarkUp
from table_1
union all
select id, null as col1, null as col2, UnitCode, MarkUp
from table_2

关于SQL - 选择 null 作为 FIELDNAME?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43278649/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com