SQL Interview Questions: Q1. What Is The Difference Between DELETE and TRUNCATE Statements?
SQL Interview Questions: Q1. What Is The Difference Between DELETE and TRUNCATE Statements?
Delete command is used to delete a row in Truncate is used to delete all the rows
a table. from a table.
Q3. What do you mean by DBMS? What are its different types?
A database is a structured collection of data.
A Database Management System (DBMS) is a software application that interacts
with the user, applications and the database itself to capture and analyze data.
A DBMS allows a user to interact with the database. The data stored in the database
can be modified, retrieved and deleted and can be of any type like strings, numbers,
images etc.
There are two types of DBMS:
Inner Join
Right Join
Left Join
Full Join
NOT NULL
CHECK
DEFAULT
UNIQUE
PRIMARY KEY
FOREIGN KEY
Q9. What is the difference between SQL and MySQL?
SQL is a standard language which stands for Structured Query Language based on
the English language whereas MySQL is a database management system. SQL is
the core of relational database which is used for accessing and managing database,
MySQL is an RDMS (Relational Database Management System) such as SQL
Server, Informix etc.
Foreign key maintains referential integrity by enforcing a link between the data
in two tables.
The foreign key in the child table references the primary key in the parent
table.
The foreign key constraint prevents actions that would destroy links between
the child and parent tables.
1. Clustered index is used for easy retrieval of data from the database and its
faster whereas reading from non clustered index is relatively slower.
2. Clustered index alters the way records are stored in a database as it sorts out
rows by the column which is set to be clustered index whereas in a non
clustered index, it does not alter the way it was stored but it creates a
separate object within a table which points back to the original table rows after
searching.
3. One table can only have one clustered index whereas it can have many non
clustered index.
Left Join: Left Join in MySQL is used to return all the rows from the left table but
only the matching rows from the right table where the join condition is fulfilled.
OK A SLOT
Right Join: Right Join in MySQL is used to return all the rows from the right table
but only the matching rows from the left table where the join condition is fulfilled.
Full Join: Full join returns all the records when there is a match in any of the tables.
Therefore, it returns all the rows from the left-hand side table and all the rows from
the right-hand side table.
Entities: A person, place, or thing in the real world about which data can be stored
in a database. Tables store data that represents one type of entity. For example – A
bank database has a customer table to store customer information. Customer table
stores this information as a set of attributes (columns within the table) for each
customer.
Relationships: Relation or links between entities that have something to do with
each other. For example – The customer name is related to the customer account
number and contact information, which might be in the same table. There can also
be relationships between separate tables (for example, customer to accounts).
Q18. What is an Index?
DROP command removes a table and it cannot be rolled back from the database
whereas TRUNCATE command removes all the rows from the table.
Q22. Explain different types of Normalization.
There are many successive levels of normalization. These are called normal
forms. Each consecutive normal form depends on the previous one.The first three
normal forms are usually adequate.
ACID stands for Atomicity, Consistency, Isolation, Durability. It is used to ensure that
the data transactions are processed reliably in a database system.
Atomicity: Atomicity refers to the transactions that are completely done or failed
where transaction refers to a single logical operation of a data. It means if one part of
any transaction fails, the entire transaction fails and the database state is left
unchanged.
Consistency: Consistency ensures that the data must meet all the validation rules.
In simple words, you can say that your transaction never leaves the database
without completing its state.
Isolation: The main goal of isolation is concurrency control.
Durability: Durability means that if a transaction has been committed, it will occur
whatever may come in between such as power loss, crash or any sort of error.
Trigger in SQL is are a special type of stored procedures that are defined to execute
automatically in place or after data modifications. It allows you to execute a batch of
code when an insert, update or any other query is executed against a specific table.
1. Arithmetic Operators
2. Logical Operators
3. Comparison Operators
Apart from this SQL Interview Questions blog, if you want to get trained from
professionals on this technology, you can opt for a structured training from edureka!
Click below to know more.
Q26. Are NULL values same as that of zero or a blank space?
A NULL value is not at all same as that of zero or a blank space. NULL value
represents a value which is unavailable, unknown, assigned or not applicable
whereas a zero is a number and blank space is a character.
Q27. What is the difference between cross join and natural join?
The cross join produces the cross product or Cartesian product of two tables
whereas the natural join is based on all the columns having the same name and data
types in both the tables.
A subquery is a query inside another query where a query is defined to retrieve data
or information back from the database. In a subquery, the outer query is called as
the main query whereas the inner query is called subquery. Subqueries are always
executed first and the result of the subquery is passed on to the main query. It can
be nested inside a SELECT, UPDATE or any other query. A subquery can also use
any comparison operators such as >,< or =.
To count the number of records in a table, you can use the below commands:
SELECT * FROM table1
Q31. Write a SQL query to find the names of employees that begin
with „A‟?
To display name of the employees that begin with „A‟, type in the below command:
1 SELECT * FROM Table_name WHERE EmpName like 'A%'
Group functions work on the set of rows and returns one result per group. Some of
the commonly used group functions are: AVG, COUNT, MAX, MIN, SUM,
VARIANCE.
Relation or links are between entities that have something to do with each other.
Relationships are defined as the connection between the tables in a database. There
are various relationships, namely:
Q35. How can you insert NULL values in a column while inserting
the data?
This statement allows conditional update or insertion of data into a table. It performs
an UPDATE if a row exists, or an INSERT if the row does not exist.
Recursive stored procedure refers to a stored procedure which calls by itself until it
reaches some boundary condition. This recursive function or procedure helps the
programmers to use the same set of code n number of times.
SQL clause helps to limit the result set by providing a condition to the query. A
clause helps to filter the rows from the entire set of records.
For example – WHERE, HAVING clause.
Apart from this SQL Interview Questions Blog, if you want to get trained from
professionals on this technology, you can opt for a structured training from edureka!
Click below to know more.
HAVING clause can be used only with SELECT statement. It is usually used in a
GROUP BY clause and whenever GROUP BY is not used, HAVING behaves like a
WHERE clause.
Having Clause is only used with the GROUP BY function in a query whereas
WHERE Clause is applied to each row before they are a part of the GROUP BY
function in a query.
Using EXEC.
Using sp_executesql.
Q44. How can you fetch common records from two tables?
You can fetch common records from two tables using INTERSECT. For example:
Select studentID from student. <strong>INTERSECT </strong> Select StudentID
1
from Exam
INITCAP: This function returns the string with the first letter in uppercase and
rest of the letters in lowercase. Syntax:
INITCAP(‘string’)
Apart from this SQL Interview Questions blog, if you want to get trained from
professionals on this technology, you can opt for a structured training from edureka!
Click below to know more.
Q50. Name the operator which is used in the query for pattern
matching?
LIKE operator is used for pattern matching, and it can be used as -.
You can select unique records from a table by using the DISTINCT keyword.
There are a lot of ways to fetch characters from a string. For example:
Select SUBSTRING(StudentName,1,5) as studentname from student
SQL is a query language that allows you to issue a single query or execute a single
insert/update/delete whereas PL/SQL is Oracle‟s “Procedural Language” SQL, which
allows you to write a full program (loops, variables, etc.) to accomplish multiple
operations such as selects/inserts/updates/deletes.
A view is a virtual table which consists of a subset of data contained in a table. Since
views are not present, it takes less space to store. View can have data of one or
more tables combined and it depends on the relationship.
A view refers to a logical snapshot based on a table or another view. It is used for
the following reasons:
Advantages:
A Stored Procedure can be used as a modular programming which means create
once, store and call for several times whenever it is required. This supports faster
execution. It also reduces network traffic and provides better security to the data.
Disadvantage:
The only disadvantage of Stored Procedure is that it can be executed only in the
database and utilizes more memory in the database server.
Scalar Functions
Inline Table-valued functions
Multi-statement valued functions
Scalar returns the unit, variant defined the return clause. Other two types of defined
functions return table.
Click Start> Programs> Microsoft SQL Server and click SQL Enterprise
Manager to run SQL Enterprise Manager from the Microsoft SQL Server
program group.
REPLACE function: This function is used to replace the existing characters of all
the occurrences. Syntax:
REPLACE (string_expression, search_string, replacement_string)
Here every search_string in the string_expression will be replaced with the
replacement_string.
Classic Selenium-Software Testing Course
Manual Testing:
Core Java:
Basics of Programming:
Java Components – jvm, jre and jdk
Data Types and Variables.
Methods
Basic Programming
1. Decision Statements
2. Looping Statements
OOPS in Java:
Members Of Class
Class and Object
Constructors
Has-A and Is-A Relationship
Constructor Chaining
this and super statement
Overloading and Overriding
Abstract class and Interface
Type Casting
Abstraction
Polymorphism
Generalization and Specialization
Access specifiers
Encapsulation
Java Library:
Object Class
String Class
Wrapper Class
Java Bean Class
System Class and its members
Scanner class
Singleton Design pattern
Arrays and problems on arrays
Collection Frameworks
Exception Handling
File Programming
Selenium Tool
Introduction to Automation
What is Automation
Advantages & Disadvantage of Automation
When do we go for Automation
Introduction to Selenium
What is Selenium?
Languages & Platform supported by Selenium
Locators
What is locator?
Locator types(tagName,id,name,className,linkText,partialLinkText,css,xapth)
Synchronization
Handling WebElement
Handling ListBox
Handling Popups
TestNG
TestNG annotations
TestNG reporting
TestNG Assertion
TestNG suite
Parallel execution
Parameter
Automation FrameWork
Automation Project
SQL
ER Diagram
Constraints
Datatypes
>DQL
o Selection and Projection
o Different types of sql clause
o Sql Function
o Single Row Function
o Multi Row Function
o Subquery
o Co – related Subquery
o Group Functions
o Joins
1. Equi
2. Self
3. Non-equi
4. Outer
DDL
o Create
o Alter
o Rename
o Drop
o Truncate
DML
o Insert
o Update
o Delete
DTL
o Commit
o Rollback
o Savepoint
DCL
o Grant
o Revoke
Normalization
Basics PL/SQL
Quality Center
2. Introdcution JDBC
Why JDBC
What is Driver
How to load the Driver
How to get a database connection
Creation of First Servlet
Component of http Request & response
3. Introduction to XML
Why XML
Xml Structure
Xml Attribute
XMl Schema
XML Parser & usage
Marshaling & Un Marshaling of XML
4. Introduction to JSON
Why JSON
JSON Syntax
JSON Structure
JSON Data Type
JSON vs XML
JSON Parser & usage
Marshaling & Un Marshaling of JSON
5. Intruction to WebServcie
Types of Webservice
SOA Architecture
Participants of WebService
Types of Webservice
Introduction to RESTFull web Service
Introduction to SOAP web Service
6. POST-MAN
Why PostMan
CRUD Operation
POSTMAN Parameter
POSTMAN Console
POSTMAN Parameter
POSTMAN Assertion
7. NewMAN
Export JSON Project
Execute test suite in command line
8. RestAssured
Why RestAssered & Advantages
RestAssured Class Diagram
Reassured Configuration using Maven
CRUD operation
8.6. Authentication
Basic authentication
Preemptive authentication
Oauth authentication
Form authentication
8.7 . TestNG
Annotation
Test Suite
Test Reports
8.8. FrameWork
API framework development
API framework Architecture
Challenges faced in API Framework
GIT integration with API FrameWork
Jenkins integration with API FrameWork