I am using DB Explorer to modify data in some Oracle tables. Using the following example to find records:
SELECT * FROM "LABSYS"."ANALYST" "ANALYST" WHERE "ANALYST"."Name" LIKE '%Tra%'
I would like to know if there is SQL syntax to convert ANALYST.Name and my query string ("Tra" in this case) to uppercase, since the data is mixed and some is all uppercase.
SELECT * FROM "LABSYS"."ANALYST" "ANALYST" WHERE "ANALYST"."Name" LIKE '%Tra%'
I would like to know if there is SQL syntax to convert ANALYST.Name and my query string ("Tra" in this case) to uppercase, since the data is mixed and some is all uppercase.