Database Management System (3330703) MCQs

MCQs of Introduction to Structured Query Language

Showing 1 to 10 out of 60 Questions
1.

Display name,spi of computer department's student , then which of the following query is right ?

(ફક્ત કોમ્પ્યુટર ડીપાર્ટમેન્ટ ના સ્ટુડન્ટ ના નામ અને SPI ડિસ્પ્લે કરવા માટે નીચે ના માંથી કઈ ક્વેરી સાચી છે ?)

(a)

select name,spi from student where department='Computer';

(b)

select * from student where department='Computer';

(c)

select name,spi from student where department=Computer; 

(d)

select name,spi from student;

Answer:

Option (a)

2.

If we want to change price of Modern Operating Systems from 425 to 720, then which of the following query is correct ?

(જો આપણે Modern Operating Systems ની પ્રાઈઝ 425 માંથી 720 કરવી છે તો નીચે માંથી કઈ ક્વેરી સાચી છે ?)

(a)

insert into BookDetails values ('Modern Operating Systems','Tanenbaum',720,'Pearson');

(b)

update BookDetails set price=720 where BookName='Modern Operating Systems';

(c)

update BookDetails set price=425 where BookName='Modern Operating Systems';

(d)

update BookDetails set price=720 where Publication='Pearson';

Answer:

Option (b)

3.

Guess the output of the following query

select count(spi) from student; 

(a)

3

(b)

4

(c)

5

(d)

6

Answer:

Option (b)

4.

Which of the following query is true to calculate which customer has given how much order ?

(ક્યાં કસ્ટમર એ કેટલા ઓર્ડર આપેલા છે તે કેલ્ક્યુલેટ કરવા માટેની નીચે ના માંથી કઈ ક્વેરી સાચી છે ?)

(a)

select c_id,count(amount) group by c_id from demo_orders;

(b)

select c_id,count(amount) from demo_orders group by c_id;

(c)

select c_id,sum(amount) from demo_orders group by c_id;

(d)

select c_id,sum(amount) group by c_id from demo_orders;

Answer:

Option (b)

5.

write query to list out only those customer's whose total order amount is greater than 1500 ?

(ફક્ત તે જ કસ્ટર ડિસ્પ્લે કરાવો જે કસ્ટર ના ઓર્ડર ની ટોટલ અમાઉન્ટ 1500 કરતા વધારે છે, તો તેના માટે નીચે ના માંથી કઈ ક્વેરી સાચી છે ?)

(a)

select c_id,sum(amount) from demo_orders group by c_id having sum(amount)>1500;

(b)

select c_id,sum(amount) from demo_orders group by c_id where sum(amount)>1500;

(c)

select c_id,sum(amount) from demo_orders having sum(amount)>1500 group by c_id;

(d)

select c_id,sum(amount) from demo_orders where sum(amount)>1500 group by c_id;

Answer:

Option (a)

6.

DDL means _______

(DDL મતલબ _______)

(a)

Data Defination Language 

(b)

Data Development Language 

(c)

Data Manipulation language 

(d)

Defination Data Language 

Answer:

Option (a)

7.

Which of the following is DDL command ?

(નીચે ના માંથી કયો DDL કમાંડ છે ?)

(a)

RENAME

(b)

INSERT 

(c)

DELETE 

(d)

LOCK

Answer:

Option (a)

8.

SELECT command belong to _______ component

(SELECT કમાંડ ______ કમ્પોનેન્ટ માં આવે છે)

(a)

DDL

(b)

DML

(c)

DCL

(d)

DQL

Answer:

Option (d)

9.

Which of the following command is belong to DCL component ?

(નીચે ના માંથી કયો કમાંડ DCL કમ્પોનેન્ટ ને બેલોન્ગ કરે છે ?)

(a)

ALTER

(b)

GRANT

(c)

CREATE

(d)

UPDATE

Answer:

Option (b)

10.

Which of the following is not DML Command ?

(નીચે ના માંથી કયો DML કમાંડ નથી ?)

(a)

INSERT 

(b)

ALTER 

(c)

UPDATE

(d)

DELETE 

Answer:

Option (b)

Showing 1 to 10 out of 60 Questions