Which of the following data storage models is typically used in a relational database management system (RDBMS)?
What is the purpose of indexing in a database?
1 Crore+ students have signed up on EduRev. Have you? Download the App |
Which of the following is not a query optimization technique used in a DBMS?
Which of the following operations is performed during the Query Processing phase in a DBMS?
In the context of a database, what does ACID stand for?
Consider the following SQL statement:
SELECT * FROM employees WHERE salary > 50000;
What will be the result of this query?
Which of the following SQL statements is used to add a new column called "age" of type INTEGER to an existing table called "students"?
Consider the following SQL statement:
SELECT COUNT(*) FROM orders;
What will be the result of this query?
Consider the following SQL statement:
INSERT INTO customers (name, age) VALUES ('John', 25);
How many rows will be affected by this query?
Consider the following SQL statement:
DELETE FROM employees WHERE department = 'Sales';
What will be the result of this query?
Consider the following B+ tree with order 3:
[12, 15, 21, 24, 30, 34, 38, 41, 44, 49]
What will be the B+ tree after inserting the value 27?
Consider the following B+ tree with order 4:
[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
What will be the B+ tree after deleting the value 50?
Consider the following SQL statement:
SELECT DISTINCT department FROM employees;
What will be the result of this query?
Consider the following SQL statement:
SELECT * FROM employees WHERE salary BETWEEN 30000 AND 50000;
What will be the result of this query?
Consider the following SQL statement:
SELECT MAX(salary) FROM employees;
What will be the result of this query?
75 videos|44 docs
|
75 videos|44 docs
|