SQL Online Quiz



Following quiz provides Multiple Choice Questions (MCQs) related to SQL. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.

Questions and Answers

Q 1 - Consider the following schema −

 STUDENTS(student_code, first_name, last_name, email, phone_no, date_of_birth, honours_subject, percentage_of_marks); 

Which of the following query would display all the students with honours_subject ‘Eng01’?

A - select student_code, first_name, last_name from students where honours_subject = ‘Eng01’;

B - select student_code, first_name, last_name from students where honours_subject is ‘Eng01’;

C - select student_code, first_name, last_name where honours_subject = ‘Eng01’

    from students;

D - select student_code, first_name, last_name from students;

Answer : A

Q 7 - Consider the following schema −

 LOCATIONS(subject_code, department_name, location_id, city); 

Which code snippet will alter the table LOCATIONS and delete the column named CITY?

A - MODIFY TABLE locations DROP (city varchar2(30));

B - ALTER TABLE locations DROP COLUMN city;

C - ALTER TABLE locations DROP (city);

D - None of the above.

Answer : B

Q 10 - Which of the following statements allows William to change his database user account password to bill?

A - create user william identified by bill;

B - alter user william identified by bill

C - create user william password bill;

D - alter user william password bill;

Answer : B

sql_questions_answers.htm
Advertisements