Advertisements
Advertisements
प्रश्न
Explain the following SQL function using a suitable example.
UCASE()
उत्तर
UCASE(): It converts the string into upper case.
Example: SELECT UCASE(‘welcome world’);
Output: WELCOME WORLD
APPEARS IN
संबंधित प्रश्न
______ is used to get a specified day of the month for a given date.
The MAX () function finds the
Assertion (A): COUNf function ignores DISTINCT
Reason (R): DISTINCT ignores the duplicate values.
The char() function in MySql is an example of ______.
Which command is used to delete a table? (in SQL)
What will be returned by the given query? Select length(trim("ABC Public School")) = ______.
What will be returned by the given query? SELECT RIGHT("LEFT", 2) = ______.
Name a function of MySQL which is used to remove trailing and leading spaces from a string.
What will be returned by the given query? SELECT MID('BoardExamination', 2, 4) = ______.
What will be returned by the given query? SELECT INSTR('INFORMATIONFORM', 'FOR') = ______.
Which of the following is not a date function?
Which function will be used to remove only the trailing spaces from a string?
Which statement is used to count the number of rows in table?
Write the name of the functions to perform the following operation:
To display the specified number of characters from a particular position of the given string.
Write the output produced by the following SQL statement:
SELECT ROUND(342.9234, -1);
Write the output produced by the following SQL statement:
SELECT LENGTH("Informatics Practices");
Write the output produced by the following SQL statement:
SELECT YEAR(“1979/11/26”),
MONTH(“1979/11/26”), DAY(“1979/11/26”), MONTHNAME(“1979/11/26”);
Which function is used to display the total number of records from a table in a database?
Which type of values will not be considered by SQL while executing the following statement?
SELECT COUNT(column name) FROM inventory;
Which one of the following functions are used to find the largest value from the given data in MySQL?
Based on the table STUDENT given here, write suitable SQL queries for the following:
Roll No | Name | Class | Gender | City | Marks |
1 | Abhishek | XI | M | Agra | 430 |
2 | Prateek | XII | M | Mumbai | 440 |
3 | Sneha | XI | F | Agra | 470 |
4 | Nancy | XII | F | Mumbai | 492 |
5 | Himanshu | XII | M | Delhi | 360 |
6 | Anchal | XI | F | Dubai | 256 |
7 | Mehar | X | F | Moscow | 324 |
8 | Nishant | X | M | Moscow | 429 |
- Display gender-wise highest marks.
- Display city-wise lowest marks.
- Display the total number of male and female students.
Write suitable SQL query for the following:
Display 7 characters extracted from the 7th left character onwards from the string ‘INDIA SHINING’.
Which function returns the sum of all elements of a list?