mySQL views to not display derived columns names
I have a simple join that uses a coalesce to resolve null columns into sequnce numbers (if the name is null)
coalesce(gr.Name,s.MenuSeq) AS MenuChoice
for some strange reason, this column will not show up at a DataProviderResourse.
Other columns that are not derived work fine, and this column shows up in the query tool, and the Server browser. IT's not in the DataProvider Object ...

