sql presentation introduction

  • HOME  • tutorials  • photos   • free grafics design    • questions and answers  • distance calculator  • maps
   



CATEGORIES
EXCEL TUTORIAL
SQL TUTORIAL
WEB INFORMATION
WINDOWS
JAVASCRIPT SCRIPTS
COMPUTER SECURITY
GRAFIC DESIGN
HTML
PHP
CSS STYLE
ATLAS OF THE WORLD
DEVELOPER
PHOTOSHOP
MAGAZINE
TOP LISTS
LATEST ARTICLES
md5 hash generator online tools windows linux c php
remove duplicates in html lines online javascript
documentgetelementbyid()innerhtml javascript set example
how to block processes from starting and running in windows xp
list of us american presidents with pictures
ucwords javascript convert online tool
hex to rgb converter javascript for colors online
letter-spacing css property for html pages
sql inject protection without complicated class php script and tutorial
how to insert decimal values into a sql table row
  home   SQL TUTORIAL » SQL PRESENTATION INTRODUCTION
google ads
 
 
 

SQL PRESENTATION INTRODUCTION


Views: 80

SQL - Structured Query Language Introduction


 

What is SQL ?

SQL ( Structured Query Language ) is a pseudo-computer language and normalized standard designed to interrogate or manipulate a relational database with:
language data definition ( DDL - Data Definition Language )
language of data manipulation ( DML - Data Manipulation Language), the most common and most visible of SQL
language Control Data ( DCL - Data Control Language)
language of control transactions ( TCL - : Transaction Control Language)
and other modules used in particular to write routines ( procedures, functions or triggers ) and interact with external languages.
SQL is in the same family as the languages SEQUEL ( which he is descended), IS or QBE (Zloof).


SQL is divided into 5 parts, namely:
Orders LDD (definition language data, or DDL, Data Definition Language) to change the structure of the database
DML commands (language of data manipulation, or DML, Data Manipulation Language) to view / edit the contents of the database
Orders LCD (control language data, or DCL Data Control Language) can manage privileges, that is to say, users and the actions they can undertake
Orders LCT (control language transactions, or TCL: Transaction Control Language,) can manage the transactions, that is to say make atomic various levels chained in sequence
SQL procedural: PSM (Persistent Stored Module), CLI (Call Level Interface), Embedded SQL, ... which is a set of tools to develop procedures, triggers (triggers) and Functions (UDF: User Define Function) and that SQL interfaces with host languages.

Language extension
PL / SQL for Oracle, Transact-SQL for Microsoft SQL Server and Sybase, SQL PL for IBM DB2, PL / pgSQL for PostgreSQL for Documentum DQL EMC

Systems Management database wich use SQL :
4th Dimension (4D)
Access
Advantage Database
Adonix X3
Base
DB2
Firebird
FoxPro - Visual FoxPro
HyperFile
Informix
Ingres
  InterBase
MaxDB (formerly SAP DB)
Microsoft SQL Server
Mimer
MySQL
Nexus
Ocelot
Oracle
Paradox
Pick
PostgreSQL 
Progress OpenEdge
SmallSQL
SQL 2000 i (Pervasive)
SQLBase (Centura)
SQLite
SQL / MM
Sybase
Teradata 



Articles related to SQL PRESENTATION INTRODUCTION
Zero result!

Tags:SQL Tutorial,Structured Query Language,SQL database,Sql server,




Leave a comment

Your name *
Your comment *
   Anti Spam code *

1 comments

added by: Narendra date: 03-07-11

 <?php
$dbhost="localhost";
$dbuser="root";
$dbpass="";
$dbname="myrecorddb";
 
 mysql_connect($dbhost,$dbuser,$dbpass)or die(mysql_error());
 
  mysql_select_db($dbname)or die(mysql_error());
 
  // Creating a TABLE named STUDENT :-by Narendra Sharma
 
  mysql_query("CREATE TABLE student(id INT NOT NULL AUTO_INCREMENT,PRIMARY KEY(id),Name VARCHAR(30),role VARCHAR(30)")or die(mysql_error());
 
  echo "the table has been created !! |Hurray !!! ";
  //now i am insert new data to the above created table.
 
  mysql_query("INSERT INTO student(id,Name,role) VALUES(1,Narendra,Administrator)") or die(mysql_error());
 
  echo "The Data has been Successfully Added to the Mentioned TABLE<br>";
 
  echo "The added content is as follow in the mentioned TABLE student";
 
  $result=mysql_query("SELECT * FROM student")or die(mysql_error());
 
    while($row=mysql_fetch_array($result))
    {
    echo "Id is  &nbsp; - ".$row['id'] ;
    echo "<br>";
    echo "Name is &nbsp; - ".$row['Name'];
    echo "<br>";
    echo "The role is &nbsp; -".$row['role'];
    echo "<br>";
    }
 
  // This program first Creates a TABLE then Insert Data ..and finally show the added elements of CREATED TABLE
 
 
 ?>
 
 
 
 
 
 




the latest articles:
• MD5 hash generator Online tools Windows Linux C Php
• Remove duplicates in html lines online javascript
• documentgetElementById()innerHTML javascript set Example
• How to block processes from starting and running in Windows XP
• List of us american presidents with pictures
• Ucwords javascript convert online tool
• Hex to rgb converter javascript for colors online
• Letter-spacing CSS property for html pages
• SQL Inject protection without complicated class php script and tutorial
• How to insert decimal values into a SQL table row
what is the height of statue of liberty
hollywood movies
map from faisalabad to hasilpur pakistan
driving distance between tanga and bagamoyo
how to abbreviate million dollars
how long do butterflies live in captivity

 

eXTReMe Tracker