如何获取评论中用户的第一条评论日期 table
How to fetch the first comment date of users in comments table
有一条评论table,需要获取table.
中每个用户的第一条评论日期(第一条插入记录)
输出将是:
user_id first_comment_date
你可以用min()
试试
SELECT user_id, MIN(comment_date)
FROM commentstable
GROUP BY user_id;
有一条评论table,需要获取table.
中每个用户的第一条评论日期(第一条插入记录)输出将是:
user_id first_comment_date
你可以用min()
试试
SELECT user_id, MIN(comment_date)
FROM commentstable
GROUP BY user_id;