Fast way to replace selected entries with a new value
A user selects some rows and a column and wants to replace the selected entries with a new values via the GUI.
names default to here(1);
colname = "column with values between 1 and 10";
dt = new table("test", add rows(5000000), new column ("c",Character, set each Value(Char(random integer(10)))));
dt << Select Where( :c == "7" ) << select columns (1);
newname = "column with values between 1 and 1...