Real interview questions from top companies for Database. Includes theoretical concepts and coding problems.
What is the difference between a relational database and a NoSQL database?
A relational database is a type of database that stores data in tables with well-defined relationships between them, whereas a NoSQL database is a type of database that does not use the traditional table-based relational model.
What is database normalization?
Database normalization is the process of organizing the data in a database to minimize data redundancy and dependency.
What is the purpose of an index in a database?
The purpose of an index in a database is to improve the speed of data retrieval by providing a quick way to locate specific data.
What is the difference between a primary key and a foreign key?
A primary key is a unique identifier for each row in a table, whereas a foreign key is a field in a table that refers to the primary key of another table.
What is a database transaction?
A database transaction is a sequence of operations performed on a database that are treated as a single, all-or-nothing unit of work.
What is the purpose of a database view?
The purpose of a database view is to provide a simplified way of accessing complex data by creating a virtual table based on the result of a query.
What is the difference between a database schema and a database instance?
A database schema is the overall structure of a database, including the relationships between tables, whereas a database instance is a specific implementation of a database schema.
What is data warehousing?
Data warehousing is the process of collecting and storing data from multiple sources in a single location, called a data warehouse, to support business intelligence and decision-making.
What is the purpose of a database trigger?
The purpose of a database trigger is to automatically execute a set of actions in response to certain events, such as insert, update, or delete operations.
What is the difference between a database cursor and a database pointer?
A database cursor is a control structure that allows you to traverse a result set, whereas a database pointer is a variable that points to a specific location in a database.
What is the purpose of a database lock?
The purpose of a database lock is to prevent multiple users from accessing and modifying the same data simultaneously, which can lead to data inconsistencies and errors.
What is the difference between a database deadlock and a database livelock?
A database deadlock is a situation where two or more transactions are blocked, each waiting for the other to release a resource, whereas a database livelock is a situation where two or more transactions are unable to proceed because they are constantly being rolled back and restarted.
What is the purpose of a database journal?
The purpose of a database journal is to record all changes made to a database, allowing for recovery in case of a failure or error.
What is the difference between a database backup and a database snapshot?
A database backup is a copy of the entire database, whereas a database snapshot is a copy of the database at a specific point in time.
What is the purpose of a database replication?
The purpose of a database replication is to maintain multiple copies of a database, which can improve availability, scalability, and performance.
What is the difference between a master-slave replication and a peer-to-peer replication?
In a master-slave replication, one database is the primary database and the others are read-only copies, whereas in a peer-to-peer replication, all databases are equal and can accept writes.
What is the purpose of a database sharding?
The purpose of a database sharding is to distribute a large database across multiple servers, which can improve scalability and performance.
What is the difference between a horizontal partitioning and a vertical partitioning?
Horizontal partitioning involves dividing a table into smaller tables based on a specific column, whereas vertical partitioning involves dividing a table into smaller tables based on a specific row.
What is the purpose of a database denormalization?
The purpose of a database denormalization is to improve performance by reducing the number of joins required to retrieve data.
What is the difference between a database ETL and a database ELT?
ETL (Extract, Transform, Load) involves transforming data before loading it into a database, whereas ELT (Extract, Load, Transform) involves loading data into a database and then transforming it.
What is the purpose of a database data masking?
The purpose of a database data masking is to protect sensitive data by replacing it with fictional data that has the same format and characteristics.
What is the difference between a database data encryption and a database data hashing?
Data encryption involves converting data into a code that can be decrypted, whereas data hashing involves converting data into a fixed-length string that cannot be reversed.
What is the purpose of a database access control?
The purpose of a database access control is to restrict access to a database based on user identity, role, or other factors.
What is the difference between a database authentication and a database authorization?
Authentication involves verifying the identity of a user, whereas authorization involves determining what actions a user is allowed to perform.
Write a SQL query to retrieve all rows from a table called 'employees' where the 'salary' is greater than 50000.
SELECT*FROM employees WHERE salary >50000;
Write a Python function to connect to a MySQL database and retrieve all rows from a table called 'employees'.
import mysql.connector;
cnx = mysql.connector.connect(user='username', password='password', host='127.0.0.1', database='database');
cursor = cnx.cursor();
cursor.execute('SELECT * FROM employees');
rows = cursor.fetchall();
for row in rows: print(row);
cnx.close()
Write a Java function to insert a new row into a table called 'employees' in a PostgreSQL database.
Write a SQL query to retrieve all rows from a table called 'orders' where the 'total' is greater than 500 and the 'order_date' is within the last 30 days.
SELECT*FROM orders WHERE total >500AND order_date > DATE_SUB(CURDATE(), INTERVAL30DAY);
Write a C# function to connect to a PostgreSQL database and retrieve all rows from a table called 'customers'.