SQL – 在条件上进行左连接,但如果条件未满足,则使用默认值

huangapple go评论54阅读模式
英文:

SQL - Left Join on a condition, but use a default value if condition is not met

问题

以下是您要翻译的内容:

I have two tables. Table V:

| City | Value |
| --- | --- |
| Default | 1.0 |
| New York | 4.5 |
| Chicago | 3.7 |

And table F:

| ID | City |
| --- | --- |
| 0321321 | Chicago |
| 6546545 | New York |
| 6654654 | Paris |
| 4547556. | London. |

I would like to left join table V onto table F. However, in Table V, the City column will not have all the cities that Table F may contain. So I would like to join on the city column, but be able to default on the Default value if the city does not exist. I tried the following hoping that if the first part of the coalesce returned false, the second part would work, but it does not. Any idea how I would perform this join?

SELECT F.ID, F.City, V.Value FROM F LEFT JOIN V ON COALESCE(V.city = F.city, V.city="Default")

Tried the code
SELECT F.ID, F.City, V.Value FROM F LEFT JOIN V ON COALESCE(V.city = F.city, V.city="Default")

but it only populated the cities that existed in table V
英文:

I have two tables. Table V:

City Value
Default 1.0
New York 4.5
Chicago 3.7

And table F:

ID City
0321321 Chicago
6546545 New York
6654654 Paris
4547556. London.

I would like to left join table V onto table F. However, in Table V, the City column will not have all the cities that Table F may contain. So I would like to join on the city column, but be able to default on the Default value if the city does not exist. I tried the following hoping that if the first part of the coalesce returned false, the second part would work, but it does not. Any idea how I would perform this join?

SELECT F.ID, F.City, V.Value FROM F LEFT JOIN V ON COALESCE(V.city = F.city, V.city="Default")

Tried the code
SELECT F.ID, F.City, V.Value FROM F LEFT JOIN V ON COALESCE(V.city = F.city, V.city="Default")

but it only populated the cities that existed in table V

答案1

得分: 1

COALESCE函数只会返回其参数中的第一个非空值。

在你的情况下,你需要进行左连接,然后替换空值。

select f.id, f.city,
    case when v.value is null
        then (select value from v where city = 'Default')
        else v.value
    end as value
from f left join v on v.city = f.city

或者也可以尝试如下方式:

select
    distinct f.id,
    f.city,
    coalesce(v.value, d.value) as value
from
    f 
    left join
    v on v.city = f.city 
    join
    (select value from v where city = 'Default') as d on true
英文:

COALESCE simply returns the first non-null value passed to it.

In your case, you need to do the left join, then replace null values.

select f.id, f.city,
    case when v.value is null
        then select value from v where city = 'Default'
        else v.value
    end as value
from f left join v on v.city = f.city

Or maybe something like this would work:

select
    distinct f.id,
    f.city,
    coalesce(v.value, d.value) as value
from
    f 
    left join
    v on v.city = f.city 
    join
    v d on d.city = 'Default'

huangapple
  • 本文由 发表于 2023年3月4日 01:44:40
  • 转载请务必保留本文链接:https://go.coder-hub.com/75630292-2.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定