{"id":7278,"date":"2024-11-14T12:26:36","date_gmt":"2024-11-14T04:26:36","guid":{"rendered":"https:\/\/fwq.ai\/blog\/7278\/"},"modified":"2024-11-14T12:26:36","modified_gmt":"2024-11-14T04:26:36","slug":"mysql%e5%ad%90%e6%9f%a5%e8%af%a2%e6%8e%92%e5%ba%8f%e5%a4%b1%e6%95%88%e5%a6%82%e4%bd%95%e8%a7%a3%e5%86%b3%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/7278\/","title":{"rendered":"MySQL\u5b50\u67e5\u8be2\u6392\u5e8f\u5931\u6548\u5982\u4f55\u89e3\u51b3\uff1f"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/img.php.cn\/upload\/article\/001\/246\/273\/173067949584519.jpg\" class=\"aligncenter\" title=\"MySQL\u5b50\u67e5\u8be2\u6392\u5e8f\u5931\u6548\u5982\u4f55\u89e3\u51b3\uff1f\u63d2\u56fe\" alt=\"MySQL\u5b50\u67e5\u8be2\u6392\u5e8f\u5931\u6548\u5982\u4f55\u89e3\u51b3\uff1f\u63d2\u56fe\" \/><\/p>\n<p><strong>\u5b50\u67e5\u8be2\u6392\u5e8f\u5931\u6548\u7684\u89e3\u51b3\u65b9\u6848<\/strong><\/p>\n<p>\u6570\u636e\u5e93\u4e2d\u5b58\u50a8\u7740\u5927\u91cf\u7528\u6237\u6570\u636e\uff0c\u6709\u65f6\u6211\u4eec\u9700\u8981\u4ece\u8fd9\u4e9b\u6570\u636e\u4e2d\u627e\u51fa\u540c\u4e00\u4e2a\u7528\u6237\u5bf9\u540c\u4e00\u4e2a\u4ea7\u54c1\u7684\u6700\u65b0\u8bb0\u5f55\u3002\u7136\u800c\uff0c\u5f53\u6211\u4eec\u76f4\u63a5\u5bf9\u5b50\u67e5\u8be2\u8fdb\u884c\u6392\u5e8f\u65f6\uff0c\u6392\u5e8f\u7ed3\u679c\u53ef\u80fd\u4e0d\u7b26\u5408\u9884\u671f\u3002<\/p>\n<p><strong>\u95ee\u9898\u539f\u56e0<\/strong><\/p>\n<p>\u5728mysql\u4e2d\uff0c\u5b50\u67e5\u8be2\u4e2d\u7684\u6392\u5e8f\u4e0d\u4f1a\u4fdd\u7559\u5230\u5916\u90e8\u67e5\u8be2\u4e2d\u3002\u56e0\u6b64\uff0c\u5f53\u6211\u4eec\u5bf9\u4e00\u4e2a\u5305\u542b\u6392\u5e8f\u5b50\u67e5\u8be2\u7684\u5916\u90e8\u67e5\u8be2\u8fdb\u884c\u5206\u7ec4\u65f6\uff0c\u6392\u5e8f\u5c06\u5931\u6548\u3002<\/p>\n<p><strong>\u89e3\u51b3\u65b9\u6cd5<\/strong><\/p>\n<p>\u4e3a\u4e86\u89e3\u51b3\u8fd9\u4e2a\u95ee\u9898\uff0c\u6211\u4eec\u53ef\u4ee5\u4f7f\u7528\u4e00\u79cd\u53cc\u91cd\u67e5\u8be2\u7684\u65b9\u6cd5\uff1a<\/p>\n<ol>\n<li><strong>\u8ba1\u7b97\u6bcf\u4e2a\u5206\u7ec4\u7684\u6700\u5927\u65f6\u95f4\u6233<\/strong><\/li>\n<\/ol>\n<pre>select\n  max(create_time) as max_create_time,\n  user_id,\n  product_id\nfrom\n  demo\ngroup by\n  user_id,\n  product_id<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<ol>\n<li><strong>\u4f7f\u7528\u6700\u5927\u65f6\u95f4\u6233\u5173\u8054\u539f\u8868<\/strong><\/li>\n<\/ol>\n<pre>SELECT\n  t2.id,\n  t1.*\nFROM\n  (\n    SELECT\n      *\n    FROM\n      demo\n    ORDER BY\n      create_time DESC\n  ) AS t2\nJOIN\n  (\n    SELECT\n      MAX(create_time) AS max_create_time,\n      user_id,\n      product_id\n    FROM\n      demo\n    GROUP BY\n      user_id,\n      product_id\n  ) AS t1\n  ON t1.user_id = t2.user_id\n  AND t1.product_id = t2.product_id\n  AND t1.max_create_time = t2.create_time<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p><strong>\u89e3\u91ca<\/strong><\/p>\n<p>\u8be5\u89e3\u51b3\u65b9\u6cd5\u901a\u8fc7\u4e24\u6b21\u67e5\u8be2\u5b9e\u73b0\uff1a<\/p>\n<ul>\n<li> <strong>\u7b2c\u4e00\u4e2a\u67e5\u8be2<\/strong>\u8ba1\u7b97\u6bcf\u4e2a\u5206\u7ec4\u7684\u6700\u65b0\u65f6\u95f4\u6233\u3002<\/li>\n<li> <strong>\u7b2c\u4e8c\u4e2a\u67e5\u8be2<\/strong>\u4f7f\u7528\u8be5\u65f6\u95f4\u6233\u4f5c\u4e3a\u8fde\u63a5\u6761\u4ef6\uff0c\u4ece\u539f\u8868\u4e2d\u627e\u51fa\u6bcf\u4e2a\u5206\u7ec4\u7684\u6700\u65b0\u8bb0\u5f55\u3002<\/li>\n<\/ul>\n<p>\u8fd9\u6837\uff0c\u6211\u4eec\u53ef\u4ee5\u83b7\u5f97\u540c\u4e00\u4e2a\u7528\u6237\u5bf9\u540c\u4e00\u4e2a\u4ea7\u54c1\u7684\u6700\u65b0\u8bb0\u5f55\uff0c\u6392\u5e8f\u7ed3\u679c\u4e5f\u7b26\u5408\u9884\u671f\u3002<\/p>\n<p>\u4ee5\u4e0a\u5c31\u662fMySQL\u5b50\u67e5\u8be2\u6392\u5e8f\u5931\u6548\u5982\u4f55\u89e3\u51b3\uff1f\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u7f51\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5b50\u67e5\u8be2\u6392\u5e8f\u5931\u6548\u7684\u89e3\u51b3\u65b9\u6848 \u6570\u636e\u5e93\u4e2d\u5b58\u50a8\u7740\u5927\u91cf\u7528\u6237\u6570\u636e\uff0c\u6709\u65f6\u6211\u4eec\u9700\u8981\u4ece\u8fd9\u4e9b\u6570\u636e\u4e2d\u627e\u51fa\u540c\u4e00\u4e2a\u7528\u6237\u5bf9\u540c\u4e00\u4e2a\u4ea7\u54c1\u7684\u6700\u65b0\u8bb0\u5f55\u3002\u7136\u800c\uff0c\u5f53\u6211\u4eec\u76f4\u63a5\u5bf9\u5b50\u67e5\u8be2\u8fdb\u884c\u6392\u5e8f\u65f6\uff0c\u6392\u5e8f\u7ed3\u679c\u53ef\u80fd\u4e0d\u7b26\u5408\u9884\u671f\u3002 \u95ee\u9898\u539f\u56e0 \u5728mysql\u4e2d\uff0c\u5b50\u67e5\u8be2\u4e2d\u7684\u6392\u5e8f\u4e0d\u4f1a\u4fdd\u7559\u5230\u5916\u90e8\u67e5\u8be2\u4e2d\u3002\u56e0\u6b64\uff0c\u5f53\u6211\u4eec\u5bf9\u4e00\u4e2a\u5305\u542b\u6392\u5e8f\u5b50\u67e5\u8be2\u7684\u5916\u90e8\u67e5\u8be2\u8fdb\u884c\u5206\u7ec4\u65f6\uff0c\u6392\u5e8f\u5c06\u5931\u6548\u3002 \u89e3\u51b3\u65b9\u6cd5 \u4e3a\u4e86\u89e3\u51b3\u8fd9\u4e2a\u95ee\u9898\uff0c\u6211\u4eec\u53ef\u4ee5\u4f7f\u7528\u4e00\u79cd\u53cc\u91cd\u67e5\u8be2\u7684\u65b9\u6cd5\uff1a \u8ba1\u7b97\u6bcf\u4e2a\u5206\u7ec4\u7684\u6700\u5927\u65f6\u95f4\u6233 select max(create_time) as max_create_time, user_id, product_id from demo group by user_id, product_id \u767b\u5f55\u540e\u590d\u5236 \u4f7f\u7528\u6700\u5927\u65f6\u95f4\u6233\u5173\u8054\u539f\u8868 SELECT t2.id, t1.* FROM ( SELECT * FROM demo ORDER BY create_time DESC ) AS t2 JOIN ( SELECT MAX(create_time) AS max_create_time, user_id, product_id FROM demo GROUP BY user_id, product_id ) AS t1 ON [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-7278","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/7278","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=7278"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/7278\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=7278"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=7278"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=7278"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}