从sql server 2000中的select中删除?

发布于 2024-11-25 08:51:57 字数 448 浏览 3 评论 0原文

我想删除此选择查询返回的任何内容:

SELECT  u.*
FROM    (
        SELECT  userName, groupId, MAX(userId) AS maxId
        FROM    userTable
    where userName <> '' and userName is not null
        GROUP BY
                userName, groupId
        HAVING  COUNT(*) > 1
        ) q
JOIN    userTable u
ON      u.userName = q.userName
        AND u.groupId= q.groupId
        AND u.userId <> q.maxId)

我该如何执行此操作?

I want to delete anything that is returned by this select query:

SELECT  u.*
FROM    (
        SELECT  userName, groupId, MAX(userId) AS maxId
        FROM    userTable
    where userName <> '' and userName is not null
        GROUP BY
                userName, groupId
        HAVING  COUNT(*) > 1
        ) q
JOIN    userTable u
ON      u.userName = q.userName
        AND u.groupId= q.groupId
        AND u.userId <> q.maxId)

How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

涫野音 2024-12-02 08:51:57

像这样构造你的删除:

DELETE U
FROM U ...
JOIN Q ...
WHERE Foo ...

或者,如果你手上已经有一个漂亮的查询,你可以这样做:

DELETE Usertable WHERE userId IN (
   SELECT UserID FROM ... /* big complex query here */
)

Structure your delete like this:

DELETE U
FROM U ...
JOIN Q ...
WHERE Foo ...

Or, if you already have a spiffy query in hand, you can do this:

DELETE Usertable WHERE userId IN (
   SELECT UserID FROM ... /* big complex query here */
)
赠佳期 2024-12-02 08:51:57

只需将 SELECT u.* 替换为 DELETE U 即可

just replace SELECT u.* with DELETE U

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文