This blog is sharing knowledge of my experience and others. Please do test in your test environment before deploying into prod instance.
Query 1:
SELECT * FROM FND_USER
WHERE
USER_NAME LIKE 'FC_%';
Output: FCCI, FC_
Query 2:
REPLACE(USER_NAME, '_', '~') LIKE 'FC~%';
Output: Only FC_
No comments:
Post a Comment