问题描述
该子查询为您提供了每个不同的计数prop_id
。您只能为分配一个计数值prop_count
。如果您打算更新prop_count
对应于prop_ids的多行,则需要向您的更新中添加一个关联的子查询,该查询将prop_id
intbl_bookings
与对应的prop_id
in相关联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行。我该如何解决?