Focal Point
LIKE Operator

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/8551096642

September 13, 2007, 02:17 PM
cifarrior
LIKE Operator
How do you translate the following sql code to WebFOCUS code?
select goremal_email_address from goremal
where goremal_email_address like '%uncg.edu';

Thank you,
Chris
September 13, 2007, 02:45 PM
jimster06
TABLE FILE GOREMAL
PRINT GOREMAL_EMAIL_ADDRESS
WHERE GOREMAL LIKE '%uncg.edu';

You may wish to search the Technical Documenation Library linked above and to the right for
Types of record selection tests

HTH


jimster06
DevStu WF 7.6.11
W7
HTML, PDF, EXL2K
September 14, 2007, 01:14 PM
Leah
quote:
WHERE GOREMAL LIKE '%uncg.edu';


Or you can use

WHERE GOREMAL CONTAINS 'uncg.edu';


Leah