1 / 25

SQL

SQL. SQL stands for Structured Query Language SQL lets you access and manipulate databases SQL is an ANSI (American National Standards Institute) standard. SQL Statements. Most of the actions you need to perform on a database are done with SQL statements. SQL DML and DDL.

Download Presentation

SQL

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. SQL

  2. SQL stands for Structured Query Language • SQL lets you access and manipulate databases • SQL is an ANSI (American National Standards Institute) standard

  3. SQL Statements • Most of the actions you need to perform on a database are done with SQL statements.

  4. 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 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

  5. The SQL SELECT Statement The SELECT statement is used to select data from a database. SQL SELECT Syntax: SELECT column_name(s)FROM table_name; OR SELECT * FROM table_name ;

  6. The SQL SELECT DISTINCT Statement • In a table, some of the columns may contain duplicate values. This is not a problem, however, sometimes you will want to list only the different (distinct) values in a table. SQL SELECT DISTINCT Syntax • SELECT DISTINCT column_name(s)FROM table_name; • EX: SELECT DISTINCT City FROM Persons ;

  7. The WHERE Clause  • The WHERE clause is used to extract only those records that fulfill a specified criterion. • SQL WHERE Syntax • SELECT column_name(s)FROM table_nameWHERE column_name operator value; • Ex: • SELECT * FROM PersonsWHERE City=‘Mysore' ;

  8. The AND & OR Operators • The AND operator displays a record if both the first condition and the second condition is true. • Ex: • SELECT * FROM PersonsWHERE FirstName=‘Raj'AND LastName=‘Kumar' ; • SELECT * FROM PersonsWHERE FirstName=‘Raj'OR FirstName=‘Vinay' ; • SELECT * FROM Persons WHERELastName=‘Kumar’AND (FirstName=‘Ravi' OR FirstName=‘Raj') ;

  9. The INSERT INTO Statement • The INSERT INTO statement is used to insert a new row in a table. • Syntax: • INSERT INTO table_nameVALUES (value1, value2, value3,...) • Or • INSERT INTO table_name (column1, column2, column3,...)VALUES (value1, value2, value3,...) ; • Ex: INSERT INTO PersonsVALUES (4,'Nilsen', 'Johan', 'Bakken 2', 'Stavanger') ; • INSERT INTO Persons (P_Id, LastName, FirstName)VALUES (5, 'Tjessem', 'Jakob') ;

  10. The UPDATE Statement • The UPDATE statement is used to update existing records in a table. • Syntax: • UPDATE table_nameSET column1=value, column2=value2,...WHERE some_column=some_value ; • Ex: UPDATE Persons SET Address=‘Jayanagar 67', City=‘Bangalore'WHERE LastName=‘Jain' AND FirstName=‘Raghu' ;

  11. The DELETE Statement • The DELETE statement is used to delete rows in a table. • SQL DELETE Syntax • DELETE FROM table_nameWHERE some_column=some_value; • DELETE FROM table_name; orDELETE * FROM table_name

  12. The CREATE TABLE Statement • The CREATE TABLE statement is used to create a table in a database. • SQL CREATE TABLE Syntax • CREATE TABLE table_name(column_name1 data_type,column_name2 data_type,column_name3 data_type,....); • Ex: CREATE TABLE Persons(P_Id int,LastName varchar(255),FirstName varchar(255),Address varchar(255),City varchar(255))

  13. SQL Constraints • Constraints are used to limit the type of data that can go into a table. • Constraints can be specified when a table is created (with the CREATE TABLE statement) or after the table is created (with the ALTER TABLE statement). • We will focus on the following constraints: • NOT NULL • UNIQUE • PRIMARY KEY • FOREIGN KEY • CHECK • DEFAULT

  14. NOT NULL Constraint • The NOT NULL constraint enforces a column to NOT accept NULL values. • EX: CREATE TABLE Persons(P_Id int NOT NULL,LastName varchar(255) NOT NULL,FirstName varchar(255),Address varchar(255),City varchar(255))

  15. UNIQUE Constraint • The UNIQUE constraint uniquely identifies each record in a database table. • EX : CREATE TABLE Persons(P_Id int NOT NULL,LastName varchar(255) NOT NULL,FirstName varchar(255),Address varchar(255),City varchar(255),UNIQUE (P_Id))

  16. PRIMARY KEY Constraint • The PRIMARY KEY constraint uniquely identifies each record in a database table. • Primary keys must contain unique values. • A primary key column cannot contain NULL values. • EX: CREATE TABLE Persons(P_Id int NOT NULL,LastName varchar(255) NOT NULL,FirstName varchar(255),Address varchar(255),City varchar(255),PRIMARY KEY (P_Id))

  17. FOREIGN KEY Constraint • A FOREIGN KEY in one table points to a PRIMARY KEY in another table. • Ex: CREATE TABLE Orders(O_Id int NOT NULL,OrderNo int NOT NULL,P_Id int,PRIMARY KEY (O_Id),FOREIGN KEY (P_Id) REFERENCES Persons(P_Id))

  18. CHECK Constraint • The CHECK constraint is used to limit the value range that can be placed in a column. • If you define a CHECK constraint on a single column it allows only certain values for this column. • Ex: CREATE TABLE Persons(P_Id int NOT NULL,LastName varchar(255) NOT NULL,FirstName varchar(255),Address varchar(255),City varchar(255),CHECK (P_Id>0))

  19. DEFAULT Constraint • The DEFAULT constraint is used to insert a default value into a column. • Ex: CREATE TABLE Persons(P_Id int NOT NULL,LastName varchar(255) NOT NULL,FirstName varchar(255),Address varchar(255),City varchar(255) DEFAULT 'Sandnes')

  20. DROP TABLE Statement • The DROP TABLE statement is used to delete a table. • DROP TABLE table_name; • ALTER TABLE Statement • The ALTER TABLE statement is used to add, delete, or modify columns in an existing table. • Syntax: ALTER TABLE table_nameADD column_namedatatype; • ALTER TABLE table_nameDROP COLUMN column_name; • ALTER TABLE table_nameALTER COLUMN column_namedatatype ;

  21. SQL Aggregate Functions • SQL aggregate functions return a single value, calculated from values in a column. • Useful aggregate functions: • AVG() - Returns the average value • COUNT() - Returns the number of rows • FIRST() - Returns the first value • LAST() - Returns the last value • MAX() - Returns the largest value • MIN() - Returns the smallest value • SUM() - Returns the sum

  22. SQL Scalar functions • SQL scalar functions return a single value, based on the input value. • Useful scalar functions: • UCASE() - Converts a field to upper case • LCASE() - Converts a field to lower case • MID() - Extract characters from a text field • LEN() - Returns the length of a text field • ROUND() - Rounds a numeric field to the number of decimals specified • NOW() - Returns the current system date and time • FORMAT() - Formats how a field is to be displayed

  23. Data Types • Microsoft Access Data Types

  24. SQL Server Data Types

More Related