
Not applicable
2016-06-20
07:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Exclude Specific Word From Results
I have a table for all project names and the resources names for each project, I want to exclude every resource from the table that contains the word "Vendor" in it's name
967 Views
3 Replies


Master II
2016-06-20
08:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Load
*
From TableName
where index(Resource,'Vendor') = 0;
699 Views

Anonymous
Not applicable
2016-06-20
08:19 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Talal,
LOAD
*
WHERE SubStringCount(Upper(Resource),'VENDOR') = 0;
Regards!!

Champion
2016-06-20
09:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
One more solution,
LOAD *
Where WildMatch(Resource,'*Vendor*') =0;
Or
Where Not WildMatch(Resource,'*Vendor*');
699 Views
