Dbms Interview Question
Dbms Interview Question
maintenance and use of a database. DBMS can be termed as File Manager that
manages data in a database rather than saving it in file systems.
2. What is RDBMS?
RDBMS stands for Relational Database Management System. RDBMS store the
data into the collection of tables, which is related by common fields between the
columns of the table. It also provides relational operators to manipulate the data
stored into the tables.
3. What is SQL?
SQL stands for Structured Query Language , and it is used to communicate with the
Database. This is a standard language used to perform tasks such as retrieval,
updation, insertion and deletion of data from a database.
4. What is a Database?
Database is nothing but an organized form of data for easy access, storing, retrieval
and managing of data. This is also known as structured form of data which can be
accessed in many ways.
A table is a set of data that are organized in a model with Columns and Rows.
Columns can be categorized as vertical, and Rows are horizontal. A table has
specified number of column called fields but can have any number of rows which is
called record.
Example:.
Table: Employee.
A Unique key constraint uniquely identified each record in the database. This
provides uniqueness for the column or set of columns.
A Primary key constraint has automatic unique constraint defined on it. But not, in
the case of Unique Key.
There can be many unique constraint defined per table, but only one Primary key
constraint defined per table.
A foreign key is one table which can be related to the primary key of another table.
Relationship needs to be created between two tables by referencing foreign key with
the primary key of another table.
9. What is a join?
This is a keyword used to query data from more tables based on the relationship
between the fields of the tables. Keys play a major role when JOINs are used.
There are various types of join which can be used to retrieve data and it depends on
the relationship between tables.
Inner Join.
Inner join return rows when there is at least one match of rows between the tables.
Right Join.
Right join return rows which are common between the tables and all rows of Right
hand side table. Simply, it returns all the rows from the right hand side table even
though there are no matches in the left hand side table.
Left Join.
Meeting all requirements of the first normal form. Placing the subsets of data in
separate tables and Creation of relationships between the tables using primary keys.
This should meet all requirements of 2NF. Removing the columns which are not
dependent on primary key constraints.
Meeting all the requirements of third normal form and it should not have multi-
valued dependencies.
Unique Index.
This indexing does not allow the field to have duplicate values if the column is
unique indexed. Unique index can be applied automatically when primary key is
defined.
Clustered Index.
This type of index reorders the physical order of the table and search based on the
key values. Each table can have only one clustered index.
NonClustered Index.
NonClustered Index does not alter the physical order of the table and maintains
logical order of data. Each table can have 999 nonclustered indexes.
A database Cursor is a control which enables traversal over the rows or records in
the table. This can be viewed as a pointer to one row in a set of rows. Cursor is very
much useful for traversing such as retrieval, addition and removal of database
records.
A DB query is a code written in order to get the information back from the database.
Query can be designed in such a way that it matched with our expectation of the
result set. Simply, a question to the Database.
A subquery is a query within another query. The outer query is called as main query,
and inner query is called subquery. SubQuery is always executed first, and the
result of subquery is passed on to the main query.
Example: When a new student is added to the student database, new records
should be created in the related tables like Exam, Score and Attendance tables.
DELETE command is used to remove rows from the table, and WHERE clause can
be used for conditional set of parameters. Commit and Rollback can be performed
after delete statement.
TRUNCATE removes all rows from the table. Truncate operation cannot be rolled
back.
25. What are local and global variables and their differences?
Local variables are the variables which can be used or exist inside the function.
They are not known to the other functions and those variables cannot be referred or
used. Variables can be created whenever that function is called.
Global variables are the variables which can be used or exist throughout the
program. Same variable declared in global cannot be used in functions. Global
variables cannot be created whenever that function is called.
Constraint can be used to specify the limit on the data type of table. Constraint can
be specified while creating or altering the table statement. Sample of constraint are.
NOT NULL.
CHECK.
DEFAULT.
UNIQUE.
PRIMARY KEY.
FOREIGN KEY.
27. What is data Integrity?
Data Integrity defines the accuracy and consistency of data stored in a database. It
can also define integrity constraints to enforce business rules on the data when it is
entered into the application or database.
Auto increment keyword allows the user to create a unique number to be generated
when a new record is inserted into the table. AUTO INCREMENT keyword can be
used in Oracle and IDENTITY keyword can be used in SQL SERVER.
Clustered index is used for easy retrieval of data from the database by altering the
way that the records are stored. Database sorts out rows by the column which is set
to be clustered index.
A nonclustered index does not alter the way it was stored but creates a complete
separate object within the table. It point back to the original table rows after
searching.
Self-join is set to be query used to compare to itself. This is used to compare values
in a column with other values in the same column in the same table. ALIAS ES can
be used for the same table comparison.
Cross join defines as Cartesian product where number of rows in the first table
multiplied by number of rows in the second table. If suppose, WHERE clause is
used in cross join then the query will work like an INNER JOIN.
Scalar Functions.
Inline Table valued functions.
Multi statement valued functions.
Scalar returns unit, variant defined the return clause. Other two types return table as
a return.
Collation is defined as set of rules that determine how character data can be sorted
and compared. This can be used to compare A and, other language characters and
also depends on the width of the characters.
Disadvantage is that it can be executed only in the Database and utilizes more
memory in the database server.
SQL clause is defined to limit the result set by providing condition to the query. This
usually filters some rows from the whole set of records.
A stored procedure which calls by itself until it reaches some boundary condition.
This recursive function or procedure helps programmers to use the same set of code
any number of times.
UNION operator is used to combine the results of two tables, and it eliminates
duplicate rows from the tables.
MINUS operator is used to return rows from the first query but not from the second
query. Matching records of first and second query and other rows from the first
query will be displayed as a result set.
ALIAS name can be given to a table or column. This alias name can be referred in
WHERE clause to identify the table or column.
Example-.
Select st.StudentID, Ex.Result from student st, Exam as Ex where st.studentID = Ex. StudentID
Here, st refers to alias name for student table and Ex refers to alias name for exam
table.
43. What is the difference between TRUNCATE and DROP statements?
TRUNCATE removes all the rows from the table, and it cannot be rolled back.
DROP command removes a table from the database and operation cannot be rolled
back.
Aggregate functions are used to evaluate mathematical calculation and return single
values. This can be calculated from the columns in a table. Scalar functions return a
single value based on the input value.
Example -.
45. How can you create an empty table from an existing table?
Example will be -.
Here, we are copying student table to another table with the same structure with no
rows copied.
Select studentID from student. <strong>INTERSECT </strong> Select StudentID from Exam
Records can be fetched for both Odd and Even row numbers -.
Select studentId from (Select rowno, studentId from student) where mod(rowno,2)=0
Select studentId from (Select rowno, studentId from student) where mod(rowno,2)=1
from (Select rowno, studentId from student) where mod(rowno,2)=1.[/sql]
49. What is the command used to fetch first 5 characters of the string?
Example -.