Advertisements
Advertisements
Question
Write suitable SQL query for the following:
Display the remainder of 100 divided by 9.
Solution
select mod(100,9);
APPEARS IN
RELATED QUESTIONS
______ keyword is used to find out the number of values in a column?
Which method is used to get the row-id of the last modified row?
Which of the following belongs to an "aggregate function"?
The MAX () function finds the
Consider the table STUDENT given below:
RollNo | Name | Class | DOB | Gender | City | Marks |
1 | Anand | XI | 6/6/97 | M | Agra | 430 |
2 | Chetan | XII | 7/5/94 | M | Mumbai | 460 |
3 | Geet | XI | 6/5/97 | F | Agra | 470 |
4 | Preeti | XII | 8/8/95 | F | Mumbai | 492 |
5 | Saniyal | XII | 8/10/95 | M | Delhi | 360 |
6 | Maakhiy | XI | 12/12/94 | F | Dubai | 256 |
7 | Neha | X | 8/12/95 | F | Moscow | 324 |
8 | Nishant | X | 12/6/95 | M | Moscow | 429 |
State the command to display the average marks scored by students of each gender who are in class XI?
(i) Select Gender, avg(Marks) from STUDENT where Class= "XI" group by Gender;
(ii) Select Gender, avg(Marks) from STUDENT group by Gender where Class="XI";
(iii) Select Gender, avg(Marks) group by Gender from STUDENT having Class="XI";
(iv) Select Gender, avg(Marks) from STUDENT group by Gender having Class = "XI";
Choose the correct option:
What will be the output of the following SQL statement?
SELECT DAY NAME (2022-04-08)
Assertion (A): COUNf function ignores DISTINCT
Reason (R): DISTINCT ignores the duplicate values.
Which of the following is not an aggregate function?
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) = ______.
What will be returned by the given query? SELECT MID('LeaminglsFun', 2, 4) = ______.
Name a function of MySQL which is used to remove trailing and leading spaces from a string.
The ______ function returns m raised to the nth power.
What will be returned by the given query? SELECT MID('BoardExamination', 2, 4) = ______.
Which of the following is not a date function?
Which of the following is not a text function?
Which function will be used to remove only the trailing spaces from a string?
The string function that returns the index of the first occurrence of substring is ______.
Write the name of the functions to perform the following operation:
To display the day like “Monday”, and “Tuesday”, from the date when India got independence.
Write the name of the functions to perform the following operation:
To display your name in capital letters.
Write the output produced by the following SQL statement:
SELECT LENGTH("Informatics Practices");
Which one of the following is not an aggregate function?
Write suitable SQL query for the following:
Display the position of occurrence of the string ‘COME’ in the string ‘WELCOME WORLD’.
Write suitable SQL query for the following:
Remove all the expected leading and trailing spaces from a column userid of the table ‘USERS’.
Explain the following SQL function using a suitable example.
UCASE()