I would like to produce a character list of all of the first letters of column in my database. The SQL below illistrats what I would like to return.
SELECT DISTIN
Sounds simple:
select distinct substring(field,1,1) as char from mytable