Je crois que le titre du post résume ma demande

J'ai repris une procédure stockée qui effectuait un select imbriqué
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
select champ1,
champ2, 
      (select Top 1 id
                    from table2
                     where table1.anum between table2.Rmin and table2.Rmax)
From table1
Le résultat peut-il changer si j'écris
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
select champ1,
champ2, 
      (select min(id)
                    from table2
                     where table1.anum between table2.Rmin and table2.Rmax)
From table1