English

Explain the following SQL function using a suitable example. MID() - Informatics Practices

Advertisements
Advertisements

Question

Explain the following SQL function using a suitable example.

MID()

Short/Brief Note
Advertisements

Solution

MID(): It extracts the specified number of characters from the given string.

Example: SELECT MID(‘Welcome world,4,,4);

Output: Come

shaalaa.com
Functions in SQL
  Is there an error in this question or solution?
2022-2023 (March) Sample

APPEARS IN

RELATED QUESTIONS

______ is used to get a specified day of the month for a given date.


Which of the following belongs to an "aggregate function"?


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 that will give the output as:

Name
Anand
Chetan
Geet
Preeti

(i) select Name from student where Class ='XI' and Class='XII';

(ii) select name from student where not Class='XI' and Class='XII';

(iii) select name from student where City="Agra" or City="Mumbai";

(iv) select name from student where City in("Agra", "Mumbai");

Choose the correct option:


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) 


Which of the following is not an aggregate function?


What will be returned by the given query? Select round(23456.1234, -2) = ______.


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.


"COUNT" keyword belongs to which categories in Mysql?


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?


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.


Differentiate between count() and count(*) functions in SQL with appropriate examples.


Predict the output of the code given below:

s="welcome2cs" 

n = len(s)
m=""
for i in range(0, n):
       if (s[i] >= 'a' and s[i] <= 'm'):
            m = m +s[i].upper()
 elif (s[i] >= 'n' and s[i] <= 'z'):
          m = m +s[i-1]
 elif (s[i].isupper()):
     m = m + s[i].lower()
 else:
     m = m +'&'
print(m)

Which one of the following is not an aggregate function?


Which one of the following functions are used to find the largest value from the given data in MySQL?


In SQL, which function is used to display the current date and time?


Write suitable SQL query for the following:

Display 7 characters extracted from the 7th left character onwards from the string ‘INDIA SHINING’.


Write suitable SQL query for the following:

Display the position of occurrence of the string ‘COME’ in the string ‘WELCOME WORLD’.


Explain the following SQL function using a suitable example.

UCASE()


Explain the following SQL function using a suitable example.

TRIM()


Explain the following SQL function using a suitable example.

POWER()


Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×