I have a table
Marks_Table (
MARKS_ID NUMBER,
ST_ID NUMBER,
MARK_DESC VARCHAR(20),
MARKS NUMBER
)
Now, MARK_DESC, contains the desciption of the Marks. Now i want to have the rows in the table which contains test in the description.
Now the problem is, that the description may contains test in any pattern, it may be Test, test, TeSt, tEST and so on..
How to fetch the rows with the above conditions.?
Thanks..
what about the “UPPER” function?