Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Selecione as datas mais antigas e mais recentes


Isso funciona com os dados que você forneceu, não posso dizer que funcionaria no MySQL, mas funciona no SQL Server.
select t.in_click, 
    t.first_name,
    t.create_date
from tracker t
where 
    t.create_date = (select min(create_date) from tracker where in_click = t.in_click)
    or t.create_date = (select max(create_date) from tracker where in_click = t.in_click)