Previous Topic: SyntaxNext Topic: BREAK Control Statement


Examples

Check if job name is equal to P25135:

JOB = 'P25135'

Check if report identifier begins with an R, S, or T:

SUBSTR(RID,1,1) = ('R','S','T')

Check if history lines are between 5000 and 10000 lines (inclusive):

HLINES => 5000 AND HLINES <= 10000