DECLARE @table TABLE(id int, name varchar(100))
INSERT INTO @table
SELECT 1, 'Patient Information' union all
SELECT 2, 'Patient Demographics' union all
SELECT 3, 'Languages' union all
SELECT 4, 'Race' union all
SELECT 5, 'Ethnicity' union all
SELECT 6, 'City' union all
SELECT 7, 'State' union all
SELECT 8, 'Zip Codes' union all
SELECT 9, 'Billing Encounter'
SELECT *
FROM @table
ORDER BY CASE when id = 8 THEN 1 ELSE 2 END
--
Chandu