What is an RDBMS?
It stands for Relational Database Management system which is a program that allows you to create, update, and save data in a relational database.
What is an ERD?
An ERD is a Entity Relationship Diagram, which is a diagram that maps out your database tables and the multiplicity and their relationships to each other.
What is SQL?
SQL stands for Structured Query Language and it’s a programming language used to communicate with the data stored in relational database management system.
What are sub-languages of SQL?
Data Definition Language, Data Manipulation Language, Data Query Language, Data Control Language, Transaction Control Language
What is DDL?
It stands for Data Definition Language and it is used to define tables and set their properties. With it, you can create a table, alter the properties of the table and drop the table.
What is DML?
DML stands for Data Manipulation Language, commands used are to insert data into the database, modify the data of the database and to delete data from the database.
What is DCL?
DCL stands for data control language, and its the sub language that’s used to grant and revoke users of their rights and permissions to a database
What is DQL?
DQL stands for Data Query Language, it is used to retrieve data from the database.
What is TCL?
TCL stands for Transaction control language, which are used to manage transactions in database with commit, rollback, and savepoint.
What is a database?
It is a structured collection of data that is stored in a computer or server and can be accessed and manipulated in various ways.
What are Objects in SQL?
What are Tables?
Tables are data objects under a schema object and it holds columns that contain your data entries.
What are Views?
What are Triggers? When can it execute?
What is an Index?
What is a Cursor?
What is a Sequence?
What is a Constraint?
Constraints are rules used to limit the type of data that can go into a table.
What are the different relationships in SQL?
What is a Primary Key?
A primary key is a field in a table which uniquely identifies each row/record in a database table.
What is a Foreign Key?
What are the different types of Joins?
What are the set operators?
What are the Transaction Properties?