This seems like it should be easier than I\'m finding it. I have a table that contains both first and last names (specified by a type ID) and a frequency of how common the name
If I understand what you're wanting...
This will get you the First Names:
SELECT * FROM [NameTable] WHERE FrequencyPercent > 1.0 AND NameType = 1 ORDER BY FrequencyPercent