DBMS - SQL
DBMS - SQL
• It is a data definition language (DDL). SQL includes commands to create database objects such as tables,
indexes, and views, as well as commands to define access rights to those database objects. Some common data
definition commands you will learn are listed in the table bellow
NOT NULL Ensures that a column will not have null values
CREATE VIEW Creates a dynamic subset of rows and columns from one or more tables
CREATE TABLE AS Creates a new table based on a query in the user’s database schema
• It is a data manipulation language (DML). SQL includes commands to insert, update, delete, and retrieve data
within the database tables. The data manipulation commands you will learn in this chapter are listed in the
table bellow
Comparison operators
Logical operators
IN Checks whether an attribute value matches any value within a value list
COUNT Returns the number of rows with non-null values for a given column
SQL is relatively easy to learn. Its basic command set has a vocabulary of fewer than 100 words. Better yet, SQL
is a nonprocedural language: you merely command what is to be done; you do not have to worry about how.
For example, a single command creates the complex table structures required to store and manipulate data
successfully; end-users and programmers do not need to know the physical data storage format or the
complex activities that take place when a SQL command is executed.
There are several different SQL “languages,” their differences are minor. Whether you use Oracle, Microsoft
SQL Server, MySQL, IBM’s DB2, Microsoft Access, or any other well-established RDBMS, a software manual
should be sufficient to get you up to speed.
At the heart of SQL is the query. Actually, in the SQL environment, the word query covers both questions and
actions. Most SQL queries are used to answer questions such as these: “What products currently held in
inventory are priced over $100, and what is the quantity on hand for each of those products?” or “How many
employees have been hired since January 1, 2016, by each of the company’s departments?” However,
many SQL queries are used to perform actions such as adding or deleting table rows or changing attribute
values within tables. Still other SQL queries create new tables or indexes. In short, for a DBMS, a query is simply
a SQL statement that must be executed. However, before you can use SQL to query a database, you must
define the database environment for SQL with its data definition commands.
A simple database composed of the following tables is used to illustrate the SQL commands
in this chapter: CUSTOMER, INVOICE, LINE, PRODUCT, and VENDOR. This database model is shown in Figure
The database model in the above Figure reflects the following business rules:
A customer may generate many invoices. Each invoice is generated by one customer.
An invoice contains one or more invoice lines. Each invoice line is associated with one invoice.
Each invoice line references one product. A product may be found in many invoice lines. (You can sell
more than one hammer to more than one customer.)
A vendor may supply many products. Some vendors do not yet supply products. For example, a vendor
list may include potential vendors.
Some products are not supplied by a vendor. For example, some products may be produced in-house
or bought on the open market.
The database model contains many tables. However, to illustrate the initial set of data definition commands,
the focus of attention will be the PRODUCT and VENDOR tables.
The VENDOR table contains vendors who are not referenced in the PRODUCT table. Database
designers note that possibility by saying that "PRODUCT" is optional to "VENDOR"; a vendor may exist
without a reference to a product.
Existing V_CODE values in the PRODUCT table must (and do) have a match in the VENDOR table to
ensure referential integrity.
A few products are supplied factory-direct, a few are made in-house, and a few may have been bought
in a warehouse sale. In other words, a product is not necessarily supplied by a vendor. Therefore,
"VENDOR" is optional to PRODUCT.
Table name: VENDOR
SQL Datatypes
In the data dictionary in Table 7.3, note the data types selected. Keep in mind that datatype selection is usually
dictated by nature and the intended use of the data. For example:
DOUBLE TIMESTAMP
REAL
BIT
However, because this chapter is designed to introduce the basics of SQL, the discussion is limited to the data
types summarized in Table above.
CREATE,
ALTER,
DROP,
RENAME, and
TRUNCATE
These commands are used to create, alter, and drop tables, views, and indexes, and they are covered first in this
chapter. There may be other objects controlled by the DDL, depending on the DBMS. For example, many DBMSs
support defining synonyms (abbreviations) for database objects or a field to hold a specified sequence of numbers
(which can be helpful in assigning primary keys to rows in tables). In a production database, the ability to use DDL
commands will generally be restricted to one or more database administrators in order to protect the database
structure from unexpected and unapproved changes. In development or student databases, DDL privileges will be
granted to more users.
Example
CREATE DATABASE kwikstop;
USE DatabaseName;
Example
USE kwikstop;
These commands will run only in the Database Management server. Do not try it.
Creating a basic table involves naming the table and defining its columns and each
column's data type.
The SQL CREATE TABLE statement is used to create a new table.
Syntax
The basic syntax of the CREATE TABLE statement is as follows:
CREATE TABLE is the keyword telling the database system what you want to do. In this case, you want to create
a new table. The unique name or identifier for the table follows the CREATE TABLE statement.
Then in brackets comes the list defining each column in the table and what sort of data type it is. The syntax
becomes clearer with the following example.
Example
The following code block is an example, which creates a CUSTOMERS table with an ID as a primary key and
NOT NULL are the constraints showing that these fields cannot be NULL while creating records in this table:
The ALTER TABLE statement is used to add, delete, or modify columns in an existing table.
To delete a column in a table, use the following syntax (notice that some database systems don't allow deleting a
column):
The SQL DROP TABLE statement is used to remove a table definition and all the data, indexes, triggers,
constraints and permission specifications for that table.
NOTE: You should be very careful while using this command because once a table is deleted then all the
information available in that table will also be lost forever.
Syntax
Example:
SELECT,
INSERT,
UPDATE, and
DELETE
Syntax
There are two basic syntaxes of the INSERT INTO statement which are shown below.
INSERT INTO TABLE_NAME (column1, column2, column3,...columnN)] VALUES (value1, value2, value3,...valueN);
Examples:
You can create a record in the CUSTOMERS table by using the second syntax as shown below.
SELECT, FROM, WHERE, LIKE, TOP, LIMIT, ROWNUM, ORDER BY, SORTING and Group By and has different keywords
like Distinct, and *
Syntax
Here, column1, column2... are the fields of a table whose values you want to fetch. If you want to fetch all the fields
available in the field, then you can use the following syntax.
The above command will display all the columns from the table Customers
This above command will display only the four columns mentioned in the SELECT clause.
The SQL WHERE clause is used to specify a condition while fetching the data from a single table or by joining with
multiple tables. If the given condition is satisfied, then only returns specific value from the table. You should use the
WHERE clause to filter the records and fetching only the necessary records. The WHERE clause is not only used in the
SELECT statement, but it is also used in the update, DELETE statement, etc., which we would examine in the
subsequent chapters.
Syntax
The basic syntax of the SELECT statement with the WHERE clause is as shown below.
You can specify a condition using the comparison or logical operators like >, <, =, LIKE, NOT, etc. The following
examples would make this concept clear.
Example:
SELECT ProductName, Unit, Price FROM Products WHERE Price BETWEEN 20 AND 30
The first command display ProductName, Unit, Price columns where Price BETWEEN 20 AND 30
The SQL LIKE clause is used to compare a value to similar values using wildcard operators. There are two wildcards
used in conjunction with the LIKE operator.
The percent sign represents zero, one or multiple characters. The underscore represents
a single number or character. These symbols can be used in combinations.
Syntax
The basic syntax of % and _ is as follows:
58
The SQL LIKE clause is used to compare a value to similar values using wildcard
operators. There are two wildcards used in conjunction with the LIKE operator.
The percent sign (%)
The underscore (_)
The percent sign represents zero, one or multiple characters. The underscore represents
a single number or character. These symbols can be used in combinations.
Syntax
The basic syntax of % and _ is as follows:
or
or
or
You can combine N number of conditions using AND or OR operators. Here, XXXX could be any numeric or string
value.
1. salary 200% the starting value is 200 and it may contain any characteristers
2. salary contains first one letter and it contains two 0 (Zero) and after that any letters.
3. salary contains first number, than 5, then two numbers.
LIMIT Clause
Syntax
The basic syntax of the TOP clause with a SELECT statement would be as follows.
LIMIT 2
Example:
ORDER BY Clause
The SQL ORDER BY clause is used to sort the data in ascending or descending order, based on one or more columns.
Some databases sort the query results in an ascending order by default.
Syntax
The basic syntax of the ORDER BY clause is as follows:
SELECT column-list
FROM table_name
[WHERE condition]
[ORDER BY column1, column2, .. columnN] [ASC | DESC];
SQL ─ Group By
The SQL GROUP BY clause is used in collaboration with the SELECT statement to arrange
identical data into groups. This GROUP BY clause follows the WHERE clause in a SELECT
statement and precedes the ORDER BY clause.
Syntax
The basic syntax of a GROUP BY clause is shown in the following code block. The GROUP BY clause must follow the
conditions in the WHERE clause and must precede the ORDER BY clause if one is used.
Example
Arithmetic operators
Comparison operators
Logical operators
Operators used to negate conditions
If you run the above statements, SQL will perform the intended operations and store the answer in the name of the
Result.
SQL Comparison Operators
> Checks if the value of the SELECT * FROM Products WHERE Price>30;
left operand is greater than
the value of right operand,
if yes then condition
becomes true.
< Checks if the value of the SELECT * FROM Products WHERE Price<30;
left operand is less than the
value of right operand, if
yes then condition becomes
true.
>= Checks if the value of the SELECT * FROM Products WHERE Price>=30;
left operand is greater than
or equal to the value of
right operand, if yes then
condition becomes true.
<= Checks if the value of the SELECT * FROM Products WHERE Price<=30;
left operand is less than or
equal to the value of right
operand, if yes then
condition becomes true.
If you run these above statements in SQL, it compares the WHERE clause. If it is true it displays the data from the
database.
Logical Operators
AND The AND SELECT * FROM Products WHERE CategoryID=3 AND Price<=30;
operator
allows
the
existenc
e of
multiple
conditio
ns in an
SQL
stateme
nt's
WHERE
clause.
LIKE The LIKE SELECT * FROM Employees WHERE Notes LIKE '% BA %';
operator
is used
to
compare
a value
to
similar
values
using
wildcard
operator
s.
NOT The NOT SELECT * FROM Categories WHERE CategoryName NOT LIKE 'Bevera
operator ges';
reverses
the
meaning
of the
logical
operator
with
which it
is used.
If you run these above statements in SQL, it compares the WHERE clause. If it is true it displays the data from the
database.
Syntax
The basic syntax of the UPDATE query with a WHERE clause is as follows:
UPDATE table_name
SET column1 = value1, column2 = value2...., columnN = valueN
WHERE [condition];
You can combine N number of conditions using the AND or the OR operators.
Example:
Syntax
The basic syntax of the DELETE query with the WHERE clause is as follows: