gpt4 book ai didi

Mysql 内连接(也许)以更新日期为条件

转载 作者:行者123 更新时间:2023-11-29 06:08:07 26 4
gpt4 key购买 nike

我有这个需求,并且我使用的是MySQl数据库

评论表

id  user id  ariticle_id     comment        comment date
========================================================
1 45 2 comment1 02/03/12
2 45 2 comment2 03/03/12
3 45 2 comment3 04/03/12
4 45 2 comment4 05/03/12
5 45 2 comment5 06/03/12
6 45 5 comment7 04/03/12
7 45 5 comment8 05/03/12
8 45 5 comment9 06/03/12

文章表

id   article_text               article_date
============================================
2 Some text 01/03/12
2 updated text 04/03/12
5 another text 03/03/12
5 another updated text 04/03/12

我想从评论表和文章表中获取所有详细信息 userid,article_id,article_text,comment,comment_date

对于给定文章 id =2 用户 id =45,并在更新文章后提供详细信息。

预期的输出是这样的

 user_id   article_id   comment           commentdate
45 2 comment3 04/03/12
45 2 comment4 05/03/12
45 2 comment5 06/03/12

我迷路了,请帮忙,我正在尝试在 MYSQL 中进行查询

最佳答案

你应该尝试具体说明你正在使用的 ID,试试这个,

Select * from comment_table
join article_table on article_table.id = comment_table.id

关于Mysql 内连接(也许)以更新日期为条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10477494/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com