Computer Science

Write the name of the functions to perform the following operations:

  1. To display the day like 'Monday', 'Tuesday', from the date when India got independence.
  2. To display the specified number of characters from a particular position of the given string.
  3. To display the name of the month in which you were born.
  4. To display your name in capital letters.

SQL Queries

1 Like

Answer

  1. DAYNAME("1947-08-15")
  2. SUBSTRING(string, pos, n)
  3. MONTHNAME("yyyy-mm-dd")
  4. UPPER('YourName')

Answered By

2 Likes


Related Questions