duanqiu9104 2014-03-23 15:14
浏览 41
已采纳

SQL显示与客户端ID匹配的所有结果,但仅显示每个实例的最新版本

i have the following sql code that displays all records that match the user SPI-GVT97. It displays 3 results as you can see. I'd like it to show the most recent version of an instance if more than one exists. So the most recent version of summers place is 2014-03-08 and as they is only one instance of 26 friars view, that should still show. So ideally, only 2 results would show instead of the current 3. I have tried max(checkin_date) but it just does the most recent version of everything for that client code.

enter image description here

SELECT checkin_id, 
       checkin_client_id, 
       checkin_inventory_id, 
       checkin_property_id, 
       checkin_date, 
       property_address_line_1, 
       client_first_name, 
       client_last_name, 
       client_organisation_name, 
       client_unique_id 
  FROM check_in 
       INNER JOIN properties 
           ON checkin_property_id = property_id 
       INNER JOIN clients 
           ON checkin_client_id = client_id 
 WHERE client_unique_id LIKE ?
  • 写回答

1条回答 默认 最新

  • dourang20110122 2014-03-23 15:33
    关注

    Append this condition at the end of the query

    ........
    ........
    ........
    WHERE client_unique_id LIKE ?
    
      AND NOT EXISTS (
        SELECT 1 FROM check_in CC
        WHERE check_in.checkin_client_id = CC.checkin_client_id
          AND CC.checkin_date < check_in.checkin_date
    )
    

    EDIT


    It's hard to say looking only at the query and without knowing tables structures.
    A general approach using NOT EXIST works fine, look at this demo: http://sqlfiddle.com/#!2/9f99d/1

    create table clients(
      client_id int primary key
    );
    
    insert into clients values(1),(2),(3);
    
    create table check_in(
      check_in_id int primary key auto_increment,
      checkin_client_id int,
      checkin_date date
    );
    
    insert into check_in( checkin_client_id, checkin_date )
    values
    (1,'2014-02-01'),(1,'2014-02-03'),
    (2,'2010-02-01'),(2,'2014-02-01'),(2,'2014-02-15'),
    (3,'2010-12-01'),(2,'2014-01-21'),(2,'2014-02-10');
    
    select *
    from clients c
    join check_in ci
    on c.client_id = ci.checkin_client_id
    where NOT EXISTS (
      select 1 
      from check_in cc1
      where ci.checkin_client_id = cc1.checkin_client_id
        and ci.checkin_date < cc1.checkin_date
    )
    
    | CLIENT_ID | CHECK_IN_ID | CHECKIN_CLIENT_ID |                    CHECKIN_DATE |
    |-----------|-------------|-------------------|---------------------------------|
    |         1 |           2 |                 1 | February, 03 2014 00:00:00+0000 |
    |         2 |           5 |                 2 | February, 15 2014 00:00:00+0000 |
    |         3 |           8 |                 3 | February, 10 2014 00:00:00+0000 |
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?