gpt4 book ai didi

mysql - Coalesce 函数如何处理数据类型

转载 作者:行者123 更新时间:2023-11-29 15:12:30 25 4
gpt4 key购买 nike

我是 REDSHIFT 中 COALESCE 功能的新手。我在 mysql 和 Redshift 中运行了以下四个查询。

第一个和第二个查询在 mysql 和 redshift 中均按预期执行。但对于第三个和第四个查询,我在 mysql 和 Redshift 中得到两个不同的结果。这是如何表现的?

  1. 选择 COALESCE(null,null,1) -> 1

  2. 选择 COALESCE(null,null,'John') -> 1

  3. 选择 COALESCE(null,null,1,'John') -> (Redshift : 错误 , mysql:1 )

  4. 选择 COALESCE(null,null,'John',1) -> (Redshift:错误, mysql:John )

此外,这个查询应该在 mysql 中给出错误,但它已经成功了感谢任何帮助

最佳答案

Amazon Redshift Database Developer Guide claim :

An NVL expression is identical to a COALESCE expression. NVL and COALESCE are synonyms.

Syntax

NVL | COALESCE ( expression, expression, ... ) 

An NVL or COALESCE expression returns the value of the first expression in the list that is not null. If all expressions are null, the result is null. When a non-null value is found, the remaining expressions in the list are not evaluated.

This type of expression is useful when you want to return a backup value for something when the preferred value is missing or null. For example, a query might return one of three phone numbers (cell, home, or work, in that order), whichever is found first in the table (not null).

如果您收到错误,这可能意味着返回值的数据类型与记录集字段或任何其他必须接受返回值的结构的数据类型不匹配。

PS。会显示错误消息吗?

关于mysql - Coalesce 函数如何处理数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59961432/

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