3

我有 3 个表 BusStop、BusRoute 和 Stop_Route(用于 M-2-M 关系)。有些站点没有关系(路线),我需要用 Bit 值 1 或 0 更新 BusStop 表中的每条记录,具体取决于它是否具有关系。我有一个查询来选择所有没有关系的站点:

SELECT
    BusStop.StopId 
FROM
    BusStop
    LEFT OUTER JOIN BusStop_BusRoute 
    ON BusStop.StopId = BusStop_BusRoute.StopId
WHERE 
    BusStop_BusRoute.StopId IS NULL

但我不清楚如何根据此结果添加值。我已经阅读了 CURSOR 和 CASE WHEN 语句,但我仍然不知道如何在我的案例中应用它们。有一个 Bit 的 StopStatus 列类型,我需要在其中插入该值。

4

2 回答 2

3
UPDATE BusStop
SET StopStatus = 
    CASE 
        WHEN BusStop_BusRoute.StopID IS NULL THEN 0 
        ELSE 1 
    END
FROM 
    BusStop
    LEFT JOIN BusStop_BusRoute 
    ON BusStop.StopId = BusStop_BusRoute.StopId
于 2012-09-19T10:33:32.927 回答
0

你可以做类似的事情

UPDATE BusStop SET BitValue = 0 WHERE StopID in 
(
--your query
SELECT
    BusStop.StopId 
FROM
    BusStop
    LEFT OUTER JOIN BusStop_BusRoute 
    ON BusStop.StopId = BusStop_BusRoute.StopId
WHERE 
    BusStop_BusRoute.StopId IS NULL
)

这是(我认为)与您的相似的完整代码。一张桌子。当 i 为 1 时,最后一个查询将位设置为 1。

create table aaa(id int identity, i int, j int, b bit)

insert into aaa values(1, 0, 0), (0, 0, 0), (0, 1, 0), (0, 0, 0)

select * from aaa

update aaa set b = 1 where id in (
select id from aaa where i = 1)
于 2012-09-19T10:39:31.357 回答