Welcome To User Friendly Software Technical concepts

This Blog contains information of various technical concepts,The concepts are precise,informative with examples.visitors can easily understand the concepts of different technical related subjects like software Testing concepts , practice questions on sql And JMeter(Open source automation tool ) for Performance testing of an web application and about selenium tool used for functional testing of an web application

Saturday, January 29, 2011

About SQL

What is Sql?

Sql is the Core Language used to perform the operations on the data.Sql pronounced as "Sequel",is a
Language that is used to manage data in an RDMS.


The SQL Statements can be categorized as

Data Definition Language(DDL):is Used by to define the database,data types,structures,and contraints on the data,Some of DDL commands are

Create:Used to create a new data base object such as a table.

ALTER:Used to Modify the database objects.

Drop:Used to delete the objects

Data Manipulation Language:is used to Manipulate the data in the database objects.Some of the DML
                                                   Commands are:

INSERT:Used to insert a new data record in a table

UPDATE:Used to insert a new data record in a table

DELETE:Used to delete a record from a table

Data Control Lanaguage:is used to control the data access in the database

GRANT:Used to assign permissions to users to access a database object

REVOKE:Used to deny permissions to users to access a database object

Data Query language:is used to query data from the data base objects

SELECT is a DQL command that is used to select data from the
database in different ways and formats.

No comments:

Post a Comment

You Can Post Your Comment Here