Hi! An easy question... I am wondering if you some how can order your reslut from a SELECT from a field with the longest string first. (with the SQL string)
Thanks!
select field, length(field) as len from table order by len DESC;
Hope that helps,
Jon