This will do what you want:
Declare @Letter char;
Set @Letter = 'B';
Select Description
From TheTable
Where Left(Description, 1) >= @Letter
Order By Description;
However, it's going to be a performance pig and there's not really a lot that can be done about it.
Tomm Carr
--
Version Normal Form -- http://groups.google.com/group/vrdbms