Established local Database. Added Table to database. Trying to add a Local View of data on one field only. Using "View Wizard". When I add a "sort on" I get zero data in the view. SQL query seems correct. I'd prefer to write my own if possible, but am unclear on how to add the view to the dbc without the wizard.
Ideally the SQL Statement would be...
SELECT cColor ;
FROM mydbf ;
WHERE !EMPTY(cColor);
ORDER BY cColor ;
GROUP BY cColor ;
INTO VIEW vColor
Any ideas as to why I would be getting zero results in the view, data does exist, and it appears to work when I don't include the ORDER BY clause.
TIA - Wayne
Ideally the SQL Statement would be...
SELECT cColor ;
FROM mydbf ;
WHERE !EMPTY(cColor);
ORDER BY cColor ;
GROUP BY cColor ;
INTO VIEW vColor
Any ideas as to why I would be getting zero results in the view, data does exist, and it appears to work when I don't include the ORDER BY clause.
TIA - Wayne