The questions can come in any order, so make sure you are selecting right option for all questions.
The Oracle WHERE clause:A.Limits the column data that are returned.
B.Limits the row data are returned.
(b) B is True
(a) Select name from instructor where salary between 90000 and 100000;
i) % matches zero of more characters.
ii) _ matches exactly one character.
(c) Both of them
(d) Ascending
Which one of the following has to be added into the blank to select the dept_name which has Computer Science as its ending string ?
(a) %
(d) Feature has two 0's in it, at any position
(c) Select * from STUDENT where city='Pune';
(b) SELECT * FROM Persons WHERE FirstName='Peter'
SELECT * FROM person
WHERE person_name='Rani';
(a) Show all columns but only those rows which belongs to person_name'Rani'
1001 Annie 6000
1009 Ross 4500
1018 Zeith 7000
above are the Employee table details.
Select * from employee where employee_id>1009;
Which of the following employee id will be displayed?
(d) 1018
1001 Annie 6000
1009 Ross 4500
1018 Zeith 7000
above are the Employee table details.
select name from employee where employee_id=1009 or salary=4500;
Which of the following employee name will be displayed?
(c) Ross
SELECT person_id, fname, lname
FROM person
WHERE person_id=4;
(a) Show only columns(person_id, fname, lname) but only those rows which belongs to person_id 4
All the questions are related to the ER Diagram displayed below: College Management System
Question 1Choose the query to display names of the students that start with the letter 'A', ordered in ascending order.
(a) select student_name from Student where student_name like 'A%' order by student_name asc;
What will be the result of below query, if the question is to display the value of the marks secured by the student_id 10 in the subject_id 1.
select value from Mark where student_id = 10 and subject_id = 1;
(b) Accepted
Fill the blank space, such that below query is used to display the records of the students with address, ordered in descending order based on student id.
select _____ from Student where address _________ order by ________ desc;
(a) *, is not null, student_id
Fill the blank space, such that below query is used to display names of the departments belonging to the block number 3, ordered in department name in descending order.
select ______ from Department where department_block_number = ________ order by department_name _________;
(a) department_name, 3, desc
Choose the query to display names of the students that start with letter 'A' and end with the letter 'a', ordered in ascending order.
(a) select student_name from Student where student_name like 'A%' and student_name like '%a' order by student_name asc;