MySql 更新查询

发布于 2024-10-12 22:25:15 字数 387 浏览 2 评论 0原文

我在 MySQL 中有一个表,其中包含以下数据,

NAME    SEX  
A       Male  
B       Female  
C       Male  
A       Null  
B       Null  
C       Null  
D       Null  

如何从前面的行更新 SEX

输出:

NAME    SEX  
A       Male  
B       Female  
C       Male  
A       Male  
B       Female  
C       Male
D       Null  

提前致谢

I have a table in MySQL with following data

NAME    SEX  
A       Male  
B       Female  
C       Male  
A       Null  
B       Null  
C       Null  
D       Null  

how can I update SEX from preceding rows?

Output:

NAME    SEX  
A       Male  
B       Female  
C       Male  
A       Male  
B       Female  
C       Male
D       Null  

Thanks in advance

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

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

发布评论

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

评论(3

偷得浮生 2024-10-19 22:25:15

如果一个名字只能有一种性别,您可以更新所有其他还没有性别的名字,例如:

update  YourTable yt1
join    (
        select  name
        ,       max(sex) as maxSex
        from    YourTable
        group by
                name
        ) yt2
on      yt1.name = yt2.name 
        and yt2.maxSex is not null
set     yt1.sex = yt2.maxSex
where   yt1.sex is null;

在您的示例中,这将填充除 D 之外的每一行的性别,因为没有名称为 D 和 a 的记录非空性别。

If a name can have only one sex, you can update all other names that do not have a sex yet like:

update  YourTable yt1
join    (
        select  name
        ,       max(sex) as maxSex
        from    YourTable
        group by
                name
        ) yt2
on      yt1.name = yt2.name 
        and yt2.maxSex is not null
set     yt1.sex = yt2.maxSex
where   yt1.sex is null;

In your example, this will fill in the sex for each row except D, since there is no record with name D and a non-null sex.

鸠魁 2024-10-19 22:25:15

如果您想在 Null 所在的所有字段上设置 Male,只需运行一个简单的更新:

UPDATE table SET SEX='Male' WHERE SEX IS NULL

如果您想自动执行此操作,您应该插入一个递增索引列来引用在你的脚本中。

If you want to set Male on all fields where Null is, just run a simple update:

UPDATE table SET SEX='Male' WHERE SEX IS NULL

If you want to do this automatically, you should insert an incrementing index column to refer to in your script.

橘虞初梦 2024-10-19 22:25:15

如果我正确理解你想要做什么,像这样的查询就可以了

UPDATE TABLE T SET SEX = (SELECT SEX FROM TABLE WHERE NAME = T.NAME LIMIT 1);

但是mysql不能在子查询中使用更新中使用的表,所以你必须使用像这样的丑陋技巧:

MySQL 错误 1093 - 无法在 FROM 子句中指定要更新的目标表

If I understand correctly what you want to do, a query like this will be ok

UPDATE TABLE T SET SEX = (SELECT SEX FROM TABLE WHERE NAME = T.NAME LIMIT 1);

but mysql cannot use in a subquery a table used in update, so you have to use a ugly trick like this one:

MySQL Error 1093 - Can't specify target table for update in FROM clause

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