Question
a.
Delete from r where P;
b.
Delete from instructor where dept name= ’Finance’;
c.
Delete from instructor where salary between 13000 and 15000;
d.
Delete from instructor;
Posted under DBMS
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Which one of the following deletes all the entries but keeps the structure of the relation .
Similar Questions
Discover Related MCQs
Q. Which of the following is used to insert a tuple from another relation.
View solution
Q. Which of the following deletes all tuples in the instructor relation for those instructors associated with a department located in the Watson building which is in department relation.
View solution
Q. UPDATE instructor
_____ salary= salary * 1.05;
Fill in with correct keyword to update the instructor relation.
View solution
Q. _________ are useful in SQL update statements,where they can be used in the set clause.
View solution
Q. The problem of ordering the update in multiple update is avoided using
View solution
Q. Which of the following is the correct format for case statements.
View solution
Q. Which of the following relation updates all instructors with salary over $100,000 receive a 3 percent raise, whereas all others receive a 5 percent raise.
View solution
Q. SELECT *
FROM student JOIN takes USING (ID);
The above query is equivalent to
View solution
Q. In SQL the statement select * from R, S is equivalent to
View solution
Q. For the view Create view instructor_info as
SELECT ID, name, building
FROM instructor, department
WHERE instructor.dept name= department.dept name;
If we insert tuple into the view as insert into instructor info values (’69987’, ’White’, ’Taylor’);
What will be the values of the other attributes in instructor and department relations?
View solution
Q. A _________ consists of a sequence of query and/or update statements.
View solution
Q. Which of the following makes the transaction permanent in the database ?
View solution
Q. In order to undo the work of transaction after last commit which one should be used ?
View solution
Q. Consider the following action:
TRANSACTION.....
Commit;
ROLLBACK;
What does Rollback do?
View solution
Q. In case of any shut down during transaction before commit which of the following statement is done automatically?
View solution
Q. In order to maintain the consistency during transactions database provides
View solution
Q. Which of the following is used to get back all the transactions back after rollback ?
View solution
Q. ______ will undo all statements up to commit?
View solution
Q. Domain constraints, functional dependency and referential integrity are special forms of _________
View solution
Q. Create index studentID_index on student(ID);
Here which one denotes the relation for which index is created ?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond DBMS? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!