What are the different types of SQL commands?
DDL - Data Definition Language
DML - Data Manipulation Language
DCL - Data Control Language
TCL - Transactional Control Language
DDL - Data Definition Language
DML - Data Manipulation Language
DCL - Data Control Language
TCL - Transactional Control Language
What are SQL Constraints?
The following constraints are commonly used in SQL:
NOT NULL
- Ensures that a column cannot have a NULL valueUNIQUE
- Ensures that all values in a column are differentPRIMARY KEY
- A combination of aNOT NULL
andUNIQUE
. Uniquely identifies each row in a tableFOREIGN KEY
- Prevents actions that would destroy links between tablesCHECK
- Ensures that the values in a column satisfies a specific conditionDEFAULT
- Sets a default value for a column if no value is specifiedCREATE INDEX
- Used to create and retrieve data from the database very quickly
Difference between Primary Key and Unique Key
Primary Key | Unique Key |
---|---|
Unique identifier for rows of a table | Unique identifier for rows of a table when primary key is not present |
Cannot be NULL | Can be NULL |
Only one primary key can be present in a table | Multiple Unique Keys can be present in a table |
present in a table | present in a table |
Selection using primary key creates clustered index | Selection using unique key creates non-clustered index |
Ans. DDL refers to Data Definition Language, it is used to define or alter the structure of the database. The different DDL commands are-
CREATE - Used to create table in the database
DROP - Drops the table from the database
ALTER - Alters the structure of the database
TRUNCATE - Deletes all the records from the database but not its database structure
RENAME - Renames a database object
Explain DML commands. What are the different DML commands in SQL?
Ans. DML refers to Data Manipulation Language, it is used for managing data present in the database. Some of the DML commands are-select, insert, update, delete etc.
Explain DCL commands. What are the different DCL commands in SQL?
Ans. DCL refers to Data Control Language, these commands are used to create roles,
grant permission and control access to the database objects. The three DCL commands are-
GRANT - Grants permission to a database user
REVOKE - Removes access privileges from a user provided with the GRANT command
Deny - Explicitly prevents a user from receiving a particular permission
(e.g. preventing a particular user belonging to a group to receive the access controls
Explain TCL commands. What are the different TCL commands in SQL?
Ans. TCL refers to Transaction Control Language, it is used to manage the changes made by DML statements. These are used to process a group of SQL statements comprising a logical unit. The three TCL commands are-
COMMIT - Commit write the changes to the database
SAVEPOINT - Savepoints are the breakpoints, these divide the transaction into smaller logical units which could be further roll-backed.
ROLLBACK - Rollbacks are used to restore the database since a last commit.
What is the difference between unique key and primary key?
Ans. A unique key allows null value(although only one) but a primary key doesn't allow null values.
A table can have more than one unique keys columns while there can be only one primary key.
A unique key column creates non-clustered index whereas primary key creates a clustered index on the column.
What is a Foreign Key?
Ans. A foreign key is used for enforcing referential integrity in which a field marked as foreign key in one table is linked with primary key of another table.
What is the difference between delete, truncate and drop command?
Ans. The difference between the Delete, Truncate and Drop command is -
Delete command is a DML command, it removes rows from table based on the condition specified in the where clause, being a DML statement we can rollback changes made by delete command.
Truncate is a DDL command, it removes all the rows from table and also frees the space held unlike delete command. It takes lock on the table while delete command takes lock on rows of table.
Drop is a DDL command, it removes the complete data along with the table structure(unlike truncate command that removes only the rows).
What are the different types of joins in SQL?
Ans. Joins are used to combine records from multiple tables. The different types of joins in SQL are-
Inner Join - To fetch rows from two tables having matching data in the specified columns of both the tables.
SELECT * FROM TABLE1 INNER JOIN TABLE2 ON TABLE1.columnA = TABLE2.columnA;
Left Join - To fetch all rows from left table and matching rows of the right table
SELECT * FROM TABLE1 LEFT JOIN TABLE2 ON TABLE1.columnA = TABLE2.columnA;
Right Join - To fetch all rows from right table and matching rows of the left table
SELECT * FROM TABLE1 RIGHT JOIN TABLE2 ON TABLE1.columnA = TABLE2.columnA;
Full Outer Join - To fetch all rows of left table and all rows of right table
SELECT * FROM TABLE1 FULL OUTER JOIN TABLE2 ON TABLE1.columnA = TABLE2.columnA;
Self Join - Joining a table to itself, for referencing its own data
SELECT * FROM TABLE1 T1, TABLE1 T2 WHERE T1.columnA = T2.columnB;
What are difference between having and where clause?
Ans. A 'where' clause is used to fetch data from database that specifies a particular criteria (specified after the where clause). Whereas a 'having' clause is used along with 'GROUPBY' to fetch data that meets a particular criteria specified by the aggregate function.
For example - for a table with Employee and Project fields, if we want to fetch Employee working on a particular project P2, we will use 'where' clause-
Select Employee from Emp_Project wh2ere Project = P2;
Now if we want to fetch Employees who are working on more than one project, we will first have to group the Employee column along with count of project and than the 'having' clause can be used to fetch relevant records-
Select Employee from Emp_Project GROUPBY Employee having count(Project)>1;
What is the difference between Union and Union All command?
Ans. The fundamental difference between Union and Union All command is, Union is by default distinct i.e.
it combines the distinct result set of two or more select statements.
Whereas, Union All combines all the rows including duplicates in the result set of different select statements.
What are different Clauses used in SQL?
WHERE Clause: This clause is used to define the condition, extract and display only those records which fulfill the given condition
Syntax: SELECT column_name(s)
FROM table_name
WHERE condition;
GROUP BY Clause: It is used with SELECT statement to group the result of the executed query using the value specified in it. It matches the value with the column name in tables and groups the end result accordingly.
Syntax: SELECT column_name(s)
FROM table_name
GROUP BY column_name;
HAVING clause: This clause is used in association with the GROUP BY clause. It is applied to each group of result or the entire result as a single group and much similar as WHERE clause, the only difference is you cannot use it without GROUP BY clause
Syntax: SELECT column_name(s)
FROM table_name
GROUP BY column_name
HAVING condition;
ORDER BY clause: This clause is to define the order of the query output either in ascending (ASC) or in descending (DESC) order. Ascending (ASC) is the default one but descending (DESC) is set explicitly.
Syntax: SELECT column_name(s)
FROM table_name
WHERE condition
ORDER BY column_name ASC|DESC;
USING clause: USING clause comes in use while working with SQL Joins. It is used to check equality based on columns when tables are joined. It can be used instead ON clause in Joins.
Syntax: SELECT column_name(s)
FROM table_name
JOIN table_name
USING (column_name);
What do we need to check in Database Testing?
Generally, in Database Testing following thing is need to be tested
Database Connectivity
Constraint Check
Required Application Field and its size
Data Retrieval and Processing With DML operations
Stored Procedures
Functional flow
How do you add a column to a table?
Ans. To add another column in the table following command has been used.
ALTER TABLE table_name ADD (column_name);
Define UNION, MINUS, UNION ALL, INTERSECT ?
Ans. MINUS – returns all distinct rows selected by the first query but not by the second.
UNION – returns all distinct rows selected by either query
UNION ALL – returns all rows selected by either query, including all duplicates.
INTERSECT – returns all distinct rows selected by both queries.