
Creator II
2021-10-03
07:29 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Data load editor where clause
I want to create a new table from the existing table using the load function.I am trying to load the data that has the word "%senior% " in the data. however, the load condition is fetching all the data irrespective of the where condition and want to create a flag based on that condition
Test:
load
Field 1, field 2
resident table 1
where field 1 = "%Senior"
2,803 Views
1 Reply

MVP
2021-10-03
08:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
HI
Try like below
load
Field 1, field 2
resident table 1
where wildmatch(field 1 ,'%Senior*');
It will fetch all the field1 records contains word '%Senior' .
Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Please close the thread by marking correct answer & give likes if you like the post.
