SQL:创建新字段,并填充查询结果

问题描述

该子查询为您提供了每个不同的计数prop_id。您只能为分配一个计数值prop_count。如果您打算更新prop_count对应于prop_ids的多行,则需要向您的更新中添加一个关联的子查询,该查询prop_idintbl_bookings与对应的prop_idin相关联tbl_listings

当我更多地考虑您的问题时,我想知道您是否打算将其插入空的tbl_listings表中而不是进行更新。您可以使用以下命令执行此操作:

INSERT INTO tbl_listings(prop_id,prop_count)
SELECT prop_id, COUNT(*) as prop_count
FROM tbl_bookings
GROUP BY prop_id

如果您确实打算进行更新并假设表中prop_id存在每个更新,则tbl_listings可以发出以下更新:

UPDATE tbl_listings
SET prop_count=(SELECT COUNT(*) 
                FROM tbl_bookings AS TB
                WHERE TB.prop_id=TL.prop_id)
FROM tbl_listings AS TL

如果要tbl_listings通过从中插入新的prop_idtbl_bookings及其各自的计数进行更新,则可以执行以下操作:

INSERT INTO tbl_listings(prop_id,prop_count)
SELECT prop_id, COUNT(*) as prop_count
FROM tbl_bookings AS TB
WHERE NOT EXISTS(SELECT prop_id -- Insert only new prop_ids/counts
                 FROM tbl_listings AS TL 
                 WHERE TL.prop_id=TB.prop_id)
GROUP BY prop_id

解决方法

我有两个表:tbl_listings,其列为:prop_id; 另一个表:tbl_bookings,其列为:prop_id,booking_date。

我想编写一个查询,计算prop_id在tbl_bookings中出现的所有时间,然后用该查询的结果填充tbl_listings中的新列。

我的查询看起来像:

ALTER TABLE tbl_listings
ADD COLUMN prop_count INT

UPDATE tbl_listings
    SET prop_count =
    (SELECT COUNT(*)
    FROM tbl_bookings
    GROUP BY prop_id)

但由于某种原因,我收到一条错误消息:子查询返回多于1行。我该如何解决?