select distinct(left(cat, 1)) as cat from products where owner='galleriafloral' and showprod = 1 order by cat
select distinct(cat) as cat from products where owner='galleriafloral' and cat like 'F%' and showprod = 1 order by cat
select cat,subcat,brand,id,replace(name, '"', '') as name,replace(description, '"', '') as description,if (length(description) > 1, 'true', 'false') as printDesc from products where owner='galleriafloral' and cat like 'F%' and showprod = 1 order by cat,subcat,name
F