In testing where do we use sql language and how it helps in
testing?

Answers were Sorted based on User's Feedback



In testing where do we use sql language and how it helps in testing?..

Answer / stl

We use sql in Database testing. to see the impact of front
end changes are correctly posted on the backend database

Is This Answer Correct ?    3 Yes 0 No

In testing where do we use sql language and how it helps in testing?..

Answer / rajendra prasad reddy,p

AS a Basic concept Database is two types
1.DBMS-Database Management Systems
2.RDBMS-Relational Database Management System

In DBMS the data will be stored in tables.It is not
possible to compare one table with another table in
DBMS.Like MS Access.

but in the case RDBMS we can create Data in the form of
tables and also it is possible to create relations from one
table to another table i.e we can compare one table data
with Another table data

SQL -Structured Query Language.
Mainly It has three parts

1.DDL-Data Definition Language
2.DML-Data Manipulation Language
3.TCL-Transaction Control Language

DDL contains following Operations
a.Create
b.Alter
c.Drop
d.Truncate
DML contains Following Operations
a.Select
b.Insert
c.Update
d.Delete
TCL contains Following operations
a.Commit
b.RollBack
Some famous database names are
MS SQL Server from Microsoft
(less secure conpared to oracle)
Oracle from Oracle Corporation
(highly Secure then SQL Server)
MySql Open Source DataBase(Free Available Databse)

Allthe above three widely using databases are built on
SQL.
In case of Testing SQL plays important role.
After creating Database it has ti be tested throughly.
Testing of database two types
1.Testing database directly by writing SQL
queries on the Back-end database and cross checking the
database vaidity.
2.Testing the database From front end,It requires
no knowledge of SQL skills
i.e we enter the data from front end and we will retrieve
from the front end.
Now a days Almost 90% of the applicationswill have
database.
Ok friends ,
Rajenda_prnumalli@yahooo.com

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

How delete all data from table in sql?

0 Answers  


Can two tables have same primary key?

0 Answers  


Explain how can you save or place your msg in a table?

0 Answers  


i declare 4 procedure in package specification but in package body i write only 3 procedure. is it complie??//w

4 Answers   Scope International,


What are the datatypes available in pl/sql ?

0 Answers  






What is difference between triggers and stored procedures. And advantages of SP over triggers ?

4 Answers   Microsoft, TCS,


How do I count rows in sql query?

0 Answers  


How to get employee name from employee table which is the fiveth highest salary of the table

20 Answers   Infosys, Rolta,


What is a schema in sql?

1 Answers  


suppose we have values like 1 5 7 in a colum.Now we want numbers like(2 3 4 6) that exists between 1 5 7.How can we do this using sql query??

5 Answers   Keane India Ltd,


How do I order by ascending in sql?

0 Answers  


What are Lexical Parameters.How They are used in Reports 6i

2 Answers   eicc,


Categories