![]() |
![]() |
||||||||||||||||||||||
|
Home |
|||||||||||||||||||||||
SQL CodingDatabases are at the heart of many enterprise applications, and it is very important to pay special attention to database programming. Everywhere you'll, from small websites or accounting applications, to the largest analytical applications such as a Web Search Engine, you will find that databases play essential role.What is SQL?SQL is a database computer language designed for retrieval and management of data in relational database management systems ( RDBMS ), database schema creation and modification, and database object access control management.
SQL is a standard interactive and programming language for querying and modifying data and managing databases.
It is both ANSI and ISO standard. However, many proprietary database systems use their own variations to it.
Largest Datbase Vendors: Oracle, Microsoft SQL Server, MySQL, IBM. There are other large proprietory databases that currently surpass these in size.
SQL is a set-based, declarative query language. However extensions of Standard SQL has long been developed that
allow to expand it with procedural programming language functionality. Examples of extensions:
Additional SQL ExtensionsSQL:2003 standard defines additional extensions to increase functionality. These are:
Common SQL StatementsCommon SQL Statements are:Queries - represented by SELECT statement. Example: SELECT * FROM ORDERS WHERE TOTALAMOUNT > 100.00 ORDER BY TOTALAMOUNT DESC Data Manipulation - represented by INSERT, UPDATE, DELETE and MERGE statements. Example: INSERT INTO ORDERS (ORDERNUMBER,CUSTOMERNAME,TOTALAMOUNT, ORDERDATE) VALUES (123,'John Doe',150.00,GETDATE()) Data Definition - represented by CREATE, DROP, TRUNCATE and ALTER statements. Example:
CREATE TABLE ORDERS (
ORDERNUMBER INT NOT NULL,
CUSTOMERNAME VARCHAR(100),
TOTALAMOUNT MONEY,
ORDERDATE DATE NOT NUL,
PRIMARY KEY (ORDERNUMBER)
);
Home | SQL Server Peformance | SQL Server Audit | Business Intelligence | SQL Clustering | SQL Developer | SQL Reporting Services | DBA | SQL and ASP.NET / ADO.NET | SQL Developer Peformance | SQL Error Messages | SQL Audit Tools | SQL Backup Tools | Coding Tool Reviews | SQL Compare Tools | SQL Documentation Tools | SQL Design Tools | SQL Monitoring Tools | SQL Log Tools | Database Security Tools | Change Management Tools | Remote Access Tools | Database Administration | Analysis/OLAP Services | Application Development | Database Configuration | Database Components | ETL | Hardware | High Availability Databases | Hints | T-SQL | PL/SQL | Views | Database Stored Procedures
|
|||||||||||||||||||||||
©2012 SQLCoding.com About Privacy sql coding | |||||||||||||||||||||||