I\'m trying to sort some data by sales person initials, and the sales rep field is 3 chars long, and is Firstname, Lastname and Account type. So, Bob Smith would be BS* and
What about this
SELECT * FROM SalesTable WHERE SalesRepField LIKE 'BS_'