I’m using the following sql statement in a grid to try to display one instance of unique information:
SELECT DISTINCT
EID
FROM
filter_inspections
My table has eid’s:
1, 2, 3, 12, 12, 12, 15
When I run this code in the sqlbuilder in scriptcase it shows me 1, 2, 3, 12, 15 which is correct. However, when the sql code is implemented in a grid I get 1, 2, 3, 12, 12, 12, 15. Is this a bug or am I doing something incorrect? I’m running Scriptcase v7.1, mySql 5.5.24 and Apache 2.2.22 on Windows 7. Thanks!!