Introduction to SQL
SQL is a standard
language for accessing and manipulating databases.
What
is SQL?
- SQL stands for Structured Query Language
- SQL lets you access and manipulate databases
- SQL is an ANSI (American National Standards Institute) standard
What
Can SQL do?
- SQL can execute queries against a database
- SQL can retrieve data from a database
- SQL can insert records in a database
- SQL can update records in a database
- SQL can delete records from a database
- SQL can create new databases
- SQL can create new tables in a database
- SQL can create stored procedures in a database
- SQL can create views in a database
- SQL can set permissions on tables, procedures, and views
SQL
is a Standard - BUT....
Although SQL is an ANSI
(American National Standards Institute) standard, there are many different
versions of the SQL language.
However, to be compliant
with the ANSI standard, they all support at least the major commands (such as
SELECT, UPDATE, DELETE, INSERT, WHERE) in a similar manner.
Note: Most of the SQL database programs also have their own proprietary
extensions in addition to the SQL standard!
Using
SQL in Your Web Site
To build a web site that
shows some data from a database, you will need the following:
- An RDBMS database program (i.e. MS Access, SQL Server, MySQL)
- A server-side scripting language, like PHP or ASP
- SQL
- HTML / CSS
Keep
in Mind That...
- SQL is not case sensitive
SQL
Statements
Most of the actions you
need to perform on a database are done with SQL statements.
The following SQL statement
will select all the records in the "Persons" table:
SELECT
* FROM Persons
|
In this tutorial we will
teach you all about the different SQL statements.
SQL
DML and DDL
SQL can be divided into two
parts: The Data Manipulation Language (DML) and the Data Definition Language
(DDL).
The query and update
commands form the DML part of SQL:
- SELECT - extracts data from a database
- UPDATE - updates data in a database
- DELETE - deletes data from a database
- INSERT INTO - inserts new data into a database
The DDL part of SQL permits
database tables to be created or deleted. It also define indexes (keys),
specify links between tables, and impose constraints between tables. The most
important DDL statements in SQL are:
- CREATE DATABASE - creates a new database
- ALTER DATABASE - modifies a database
- CREATE TABLE - creates a new table
- ALTER TABLE - modifies a table
- DROP TABLE - deletes a table
- CREATE INDEX - creates an index (search key)
- DROP INDEX - deletes an index
No comments:
Post a Comment
Please write your view and suggestion....