prova questo:
select *
from MyTable T
join (Select First,max(Fourth) as Fourth
from MyTable
group by First)a
on T.First=a.First
and T.Fourth=a.Fourth
prova questo:
select *
from MyTable T
join (Select First,max(Fourth) as Fourth
from MyTable
group by First)a
on T.First=a.First
and T.Fourth=a.Fourth
Come creare un vincolo univoco su più colonne in SQL Server - Tutorial SQL Server / TSQL Parte 96
Come creare una traccia SQL per acquisire eventi di SQL Server
5 motivi per scegliere Arkware
Come aggiungere il vincolo della chiave primaria alle colonne di identità a tutte le tabelle nel database di SQL Server - Tutorial di SQL Server / TSQL Parte 63