I want to be able to search a list of people and return everyone whose LastName >= 'Robertson'. I thought about creating a temp table with an Identity and then inserting the records in alphabetical order into that table. Then find the closest match, and selecting where IdentityField >= ClosestMatch's identity.
Is there an easier way to do this?


Reply With Quote
