In one of my query I do not want Regular Expression condition in WHERE clause. It means the query should exclude Regular expression condition.
Eg:- select ........ where regexp_like(col, '[a-zA-Z0-9]\.[a-zA-Z0-9]')
whatever we are getting records from the above query I do not want. In the above code i do not want this regular expression in the WHERE clause. How to exclude this condition so that i can filter my condition & query .