This code returns 'yes'. Why?def temp-table tt no-undo
field data as char
index wdata is word-index data.
create tt. tt.data = 'Иванов Петр Семенович'.
for each tt where tt.data contains 'Ивано':
message 'yes'.
end.
Thanks!
This code returns 'yes'. Why?def temp-table tt no-undo
field data as char
index wdata is word-index data.
create tt. tt.data = 'Иванов Петр Семенович'.
for each tt where tt.data contains 'Ивано':
message 'yes'.
end.
This code does not return 'yes'.def temp-table tt no-undo
field data as char
index wdata is word-index data.
create tt. tt.data = 'Иванов Петр Семенович'.
for each tt where tt.data contains 'Семенови':
message 'yes'.
end.