I use query command to have a list of unique values from a table. The "Data" and "LIST" tables are prepared, and here is my script.
query("SELECT myValue from Data GROUP BY myValue");
dumpquery(reftable("LIST"), 1);
This script generates a list but not "grouping by". It just list all the values from the myValue column just like we do "SELECT myValue from Data");
What did I miss? I believe FlexSim supports the "GROUP BY" according to the help reference, doesn't it?
Thanks much for your help in advance.