Informatics Practices

In SQL, the equivalent of UCASE() is :

  1. UPPERCASE()
  2. CAPITALCASE()
  3. UPPER()
  4. TITLE()

SQL Queries

2 Likes

Answer

UPPER()

Reason — The equivalent function in SQL to UCASE() is UPPER(). Both perform the same operation, which is to convert all characters in a string to uppercase.

Answered By

2 Likes


Related Questions