This document provides an introduction to structured query language (SQL). It discusses the two broad categories of SQL functions: data definition language and data manipulation language. The data definition language includes commands for creating database objects like tables and views, while the data manipulation language includes commands for inserting, updating, deleting, and retrieving data from tables. The document then covers topics like SQL data types, table structures, constraints, indexes, and basic data manipulation commands. It also discusses more advanced SQL concepts such as joins, aggregate functions, and views.
Introduces Structured Query Language (SQL), detailing its two main types: Data Definition Language (DDL) for creating and managing databases, and Data Manipulation Language (DML) for handling data.
Focus on Data Definition Commands, creating database structures, defining schema, and the importance of authentication in database design.
Discusses data types, table structures, attribute specifications (LIKE NOT NULL, UNIQUE), and the concept of SQL constraints on data integrity.
Explains the use of SQL indexes for unique data retrieval, modifying tables, and the critical commands for adding, saving, and manipulating table rows.
Describes various DML operations such as SELECT, UPDATE, DELETE, and using INSERT with subqueries for data management.
Covers the use of WHERE clauses to filter SQL queries, emphasizing the importance of conditions in data retrieval.
Explains arithmetic and special SQL operators, including BETWEEN, IS NULL, and LIKE for data comparisons and operations.
Focus on the ALTER command for modifying table structures, including adding, modifying, and dropping columns in SQL databases.
Details the process of copying data, adding key designations, and how to safely delete tables while maintaining data integrity.
Details the use of aggregate functions for data analysis and filtering options to enhance data retrieval output.
Explains virtual tables (views) and the importance of joins for combining data across tables, highlighting essential join types.
Introduction to SQL SQLfunctions fit into two broad categories: ◦ Data definition language ◦ SQL includes commands to: ◦ Create database objects, such as tables, indexes, and views ◦ Define access rights to those database objects ◦ Data manipulation language ◦ Includes commands to insert, update, delete, and retrieve data within database tables 2
3.
SQL is relativelyeasy to learn Basic command set has vocabulary of less than 100 words Nonprocedural language American National Standards Institute (ANSI) prescribes a standard SQL Several SQL dialects exist 3
Creating the Database Followingtwo tasks must be completed: ◦ Create database structure ◦ Create tables that will hold end-user data First task: ◦ RDBMS creates physical files that will hold database ◦ Tends to differ substantially from one RDBMS to another 9
10.
The Database Schema Authentication ◦Process through which DBMS verifies that only registered users are able to access database ◦ Log on to RDBMS using user ID and password created by database administrator Schema ◦ Group of database objects—such as tables and indexes—that are related to each other 10
11.
Data Types Data typeselection is usually dictated by nature of data and by intended use Pay close attention to expected use of attributes for sorting and data retrieval purposes 11
Creating Table Structures Useone line per column (attribute) definition Use spaces to line up attribute characteristics and constraints Table and attribute names are capitalized NOT NULL specification UNIQUE specification 13
14.
Primary key attributescontain both a NOT NULL and a UNIQUE specification RDBMS will automatically enforce referential integrity for foreign keys Command sequence ends with semicolon 14
15.
SQL Constraints NOT NULLconstraint ◦Ensures that column does not accept nulls UNIQUE constraint ◦Ensures that all values in column are unique DEFAULT constraint ◦Assigns value to attribute when a new row is added to table CHECK constraint ◦Validates data when attribute value is entered 15
16.
SQL Indexes When primarykey is declared, DBMS automatically creates unique index Often need additional indexes Using CREATE INDEX command, SQL indexes can be created on basis of any selected attribute Composite index ◦Index based on two or more attributes ◦Often used to prevent data duplication 16
17.
Data Manipulation Commands Adding tablerows Saving table changes Listing table rows Updating table rows Restoring table contents Deleting table rows Inserting table rows with a select subquery 17
18.
Adding Table Rows INSERT ◦Used to enter data into table ◦ Syntax: ◦ INSERT INTO columnname VALUES (value1, value2, … , valuen); 18
19.
When entering values,notice that: ◦Row contents are entered between parentheses ◦Character and date values are entered between apostrophes ◦Numerical entries are not enclosed in apostrophes ◦Attribute entries are separated by commas ◦A value is required for each column Use NULL for unknown values 19
20.
Saving Table Changes Changesmade to table contents are not physically saved on disk until, one of the following occurs: ◦Database is closed ◦Program is closed ◦COMMIT command is used Syntax: ◦COMMIT [WORK]; Will permanently save any changes made to any table in the database 20
21.
Listing Table Rows SELECT ◦Used to list contents of table ◦ Syntax: ◦ SELECT columnlist FROM tablename; Columnlist represents one or more attributes, separated by commas Asterisk can be used as wildcard character to list all attributes 21
22.
Updating Table Rows UPDATE ◦Modify data in a table ◦ Syntax: ◦ UPDATE tablename SET columnname = expression [, columname = expression] [WHERE conditionlist]; If more than one attribute is to be updated in row, separate corrections with commas 22
23.
Restoring Table Contents ROLLBACK ◦Usedto restore database to its previous condition ◦Only applicable if COMMIT command has not been used to permanently store changes in database Syntax: ◦ROLLBACK; COMMIT and ROLLBACK only work with data manipulation commands that are used to add, modify, or delete table rows 23
24.
Deleting Table Rows DELETE ◦Deletes a table row ◦ Syntax: ◦ DELETE FROM tablename [WHERE conditionlist ]; WHERE condition is optional If WHERE condition is not specified, all rows from specified table will be deleted 24
25.
Inserting Table Rowswith a Select Subquery INSERT ◦ Inserts multiple rows from another table (source) ◦ Uses SELECT subquery ◦ Query that is embedded (or nested) inside another query ◦ Executed first ◦ Syntax: ◦ INSERT INTO tablename SELECT columnlist FROM tablename; 25
26.
Selecting Rows with ConditionalRestrictions Select partial table contents by placing restrictions on rows to be included in output ◦ Add conditional restrictions to SELECT statement, using WHERE clause Syntax: ◦ SELECT columnlist FROM tablelist [ WHERE conditionlist ] ; 26
Arithmetic Operators: The Ruleof Precedence Perform operations within parentheses Perform power operations Perform multiplications and divisions Perform additions and subtractions 29
Special Operators BETWEEN ◦ Usedto check whether attribute value is within a range IS NULL ◦ Used to check whether attribute value is null LIKE ◦ Used to check whether attribute value matches given string pattern 31
32.
IN ◦ Used tocheck whether attribute value matches any value within a value list EXISTS ◦ Used to check if subquery returns any rows 32
33.
Advanced Data Definition Commands Allchanges in table structure are made by using ALTER command ◦ Followed by keyword that produces specific change ◦ Following three options are available: ◦ ADD ◦ MODIFY ◦ DROP 33
34.
Changing a Column’sData Type ALTER can be used to change data type Some RDBMSs (such as Oracle) do not permit changes to data types unless column to be changed is empty 34
35.
Changing a Column’sData Characteristics Use ALTER to change data characteristics If column to be changed already contains data, changes in column’s characteristics are permitted if those changes do not alter the data type 35
36.
Adding a Column UseALTER to add column ◦ Do not include the NOT NULL clause for new column 36
37.
Dropping a Column UseALTER to drop column ◦ Some RDBMSs impose restrictions on the deletion of an attribute 37
Copying Parts ofTables SQL permits copying contents of selected table columns so that the data need not be reentered manually into newly created table(s) First create the PART table structure Next add rows to new PART table using PRODUCT table rows 39
40.
Adding Primary and ForeignKey Designations When table is copied, integrity rules do not copy, so primary and foreign keys need to be manually defined on new table User ALTER TABLE command ◦ Syntax: ◦ ALTER TABLE tablename ADD PRIMARY KEY(fieldname); ◦ For foreign key, use FOREIGN KEY in place of PRIMARY KEY 40
41.
Deleting a Tablefrom the Database DROP ◦ Deletes table from database ◦ Syntax: ◦ DROP TABLE tablename; 41
42.
Advanced Select Queries SQLprovides useful functions that can: ◦ Count ◦ Find minimum and maximum values ◦ Calculate averages SQL allows user to limit queries to only those entries having no duplicates or entries whose duplicates may be grouped 42
Virtual Tables: Creatinga View View is virtual table based on SELECT query ◦ Can contain columns, computed columns, aliases, and aggregate functions from one or more tables Base tables are tables on which view is based Create view by using CREATE VIEW command 51
Joining Database Tables Abilityto combine (join) tables on common attributes is most important distinction between relational database and other databases Join is performed when data are retrieved from more than one table at a time Join is generally composed of an equality comparison between foreign key and primary key of related tables 53
54.
Joining Tables withan Alias Alias can be used to identify source table Any legal table name can be used as alias Add alias after table name in FROM clause ◦ FROM tablename alias 54
55.
Summary SQL commands canbe divided into two overall categories: ◦ Data definition language commands ◦ Data manipulation language commands The ANSI standard data types are supported by all RDBMS vendors in different ways Basic data definition commands allow you to create tables, indexes, and views 55
56.
DML commands allowyou to add, modify, and delete rows from tables The basic DML commands are SELECT, INSERT, UPDATE, DELETE, COMMIT, and ROLLBACK INSERT command is used to add new rows to tables SELECT statement is main data retrieval command in SQL 56
57.
Many SQL constraintscan be used with columns The column list represents one or more column names separated by commas WHERE clause can be used with SELECT, UPDATE, and DELETE statements to restrict rows affected by the DDL command 57
58.
Aggregate functions ◦ Specialfunctions that perform arithmetic computations over a set of rows ORDER BY clause ◦ Used to sort output of SELECT statement ◦ Can sort by one or more columns and use either an ascending or descending order Join output of multiple tables with SELECT statement 58
59.
Natural join usesjoin condition to match only rows with equal values in specified columns Right outer join and left outer join used to select rows that have no matching values in other related table 59