velvettiger
New Member
Hi guys,
I am new to Progress and I want to use the 'like' keyword. I tried using it like I would when I write sql statements because I know that it is somewhat similar. Does anyone have any suggestions
I am new to Progress and I want to use the 'like' keyword. I tried using it like I would when I write sql statements because I know that it is somewhat similar. Does anyone have any suggestions
Code:
OUTPUT TO C:\cal\Antigua_CFL_OR_SHELL.TXT.
SESSION:DATE-FORMAT = "ymd".
FOR EACH customer FIELDS( card-no
card-class
first-name
initials-name
last-name
)
where cardnumber like '25252545%'
NO-LOCK:
EXPORT
DELIMITER ","
card-no card-class
account-status
first-name
initials-name
last-name.
END.
OUTPUT CLOSE.