Afternoon Folks ...
have a T-SQL script as follows ...
select sf.store_front_name,
sf.store_front_description,
i.image_location
from store_Fronts sf left join images i on
(sf.store_front_image_id=i.image_id)
where sf.store_front_id in
(256,107,1687,1376,2684,204,667,1945)
i would like to have the result set return the records in the order they were sent in the query itself. right now, the result set is ordered when it comes back (ie. 107,204, 256 ...) Any ideas?
Thanks
have a T-SQL script as follows ...
select sf.store_front_name,
sf.store_front_description,
i.image_location
from store_Fronts sf left join images i on
(sf.store_front_image_id=i.image_id)
where sf.store_front_id in
(256,107,1687,1376,2684,204,667,1945)
i would like to have the result set return the records in the order they were sent in the query itself. right now, the result set is ordered when it comes back (ie. 107,204, 256 ...) Any ideas?
Thanks