Podcast
Questions and Answers
What does SQL stand for?
What does SQL stand for?
- Simple Question Logic
- Standard Query Linguistics
- Structured Query Language (correct)
- Structured Question Language
Which of the following is NOT a RDBMS?
Which of the following is NOT a RDBMS?
- Microsoft Word (correct)
- Microsoft SQL Server
- PostgreSQL
- MySQL
What is the primary function of a query language?
What is the primary function of a query language?
- To design the user interface of an application
- To create computer graphics
- To access and manipulate data in a database (correct)
- To manage the operating system
Which of the following is an advantage of using SQL?
Which of the following is an advantage of using SQL?
What character is used to end SQL statements?
What character is used to end SQL statements?
In SQL, are 'salary' and 'SALARY' considered the same?
In SQL, are 'salary' and 'SALARY' considered the same?
Which data type is used to store a fixed-length string?
Which data type is used to store a fixed-length string?
Which data type is used to store a variable-length string?
Which data type is used to store a variable-length string?
Which data type is used to store integer values?
Which data type is used to store integer values?
Which data type is used to store numbers with decimal points?
Which data type is used to store numbers with decimal points?
Which data type is used to store dates?
Which data type is used to store dates?
What is a constraint in SQL?
What is a constraint in SQL?
Which constraint ensures that a column cannot have NULL values?
Which constraint ensures that a column cannot have NULL values?
Which constraint ensures that all values in a column are distinct?
Which constraint ensures that all values in a column are distinct?
Which constraint automatically assigns a value to a column if no value is specified?
Which constraint automatically assigns a value to a column if no value is specified?
Which constraint uniquely identifies each row in a table?
Which constraint uniquely identifies each row in a table?
Which SQL component is responsible for defining, modifying, and deleting database schemas?
Which SQL component is responsible for defining, modifying, and deleting database schemas?
Which statement is used to create a new database?
Which statement is used to create a new database?
What does the term 'degree' refer to in the context of a table?
What does the term 'degree' refer to in the context of a table?
What is the purpose of the ALTER TABLE statement?
What is the purpose of the ALTER TABLE statement?
Which statement is used to delete a table?
Which statement is used to delete a table?
Which SQL component includes the INSERT, UPDATE, and DELETE statements?
Which SQL component includes the INSERT, UPDATE, and DELETE statements?
Which statement is used to add new records to a table?
Which statement is used to add new records to a table?
What is the purpose of the SELECT statement?
What is the purpose of the SELECT statement?
Which clause is used to filter data based on a specified condition?
Which clause is used to filter data based on a specified condition?
What is the purpose of the AS
keyword in SQL?
What is the purpose of the AS
keyword in SQL?
What clause is used to eliminate duplicate rows in a SELECT
statement?
What clause is used to eliminate duplicate rows in a SELECT
statement?
Which of the following operators tests for inclusion in a set of values?
Which of the following operators tests for inclusion in a set of values?
What is the purpose of the ORDER BY
clause?
What is the purpose of the ORDER BY
clause?
Which keyword is used to sort results in descending order?
Which keyword is used to sort results in descending order?
What special value does SQL use to represent a missing or unknown value?
What special value does SQL use to represent a missing or unknown value?
How do you check for a NULL value in a column?
How do you check for a NULL value in a column?
The LIKE
operator is used for what?
The LIKE
operator is used for what?
Which wildcard character represents zero, one, or multiple characters?
Which wildcard character represents zero, one, or multiple characters?
Which wildcard character represents exactly one character?
Which wildcard character represents exactly one character?
Which statement is used to modify existing records in a table?
Which statement is used to modify existing records in a table?
Which statement do you use to remove records from a table?
Which statement do you use to remove records from a table?
Which SQL function would you use to convert a string to uppercase?
Which SQL function would you use to convert a string to uppercase?
What does the SQL function NOW()
do?
What does the SQL function NOW()
do?
Which SQL Function returns the number of characters in a String?
Which SQL Function returns the number of characters in a String?
Assuming you have a column named price
, which query selects the name and the largest price?
Assuming you have a column named price
, which query selects the name and the largest price?
Flashcards
What is SQL?
What is SQL?
A language used to access and manipulate data in Database Management Systems.
What is CHAR(n)?
What is CHAR(n)?
Specifies a character data type with a fixed length, padding extra spaces if needed.
What is VARCHAR(n)?
What is VARCHAR(n)?
Specifies a character data type of variable length, optimized for various sized inputs.
What is INT?
What is INT?
Signup and view all the flashcards
What is FLOAT?
What is FLOAT?
Signup and view all the flashcards
What is DATE?
What is DATE?
Signup and view all the flashcards
What is NOT NULL constraint?
What is NOT NULL constraint?
Signup and view all the flashcards
What is the UNIQUE constraint?
What is the UNIQUE constraint?
Signup and view all the flashcards
What is the DEFAULT constraint?
What is the DEFAULT constraint?
Signup and view all the flashcards
What is PRIMARY KEY?
What is PRIMARY KEY?
Signup and view all the flashcards
What is FOREIGN KEY?
What is FOREIGN KEY?
Signup and view all the flashcards
What is CREATE DATABASE?
What is CREATE DATABASE?
Signup and view all the flashcards
What is SHOW DATABASES?
What is SHOW DATABASES?
Signup and view all the flashcards
What is CREATE TABLE?
What is CREATE TABLE?
Signup and view all the flashcards
What is DESCRIBE table_name?
What is DESCRIBE table_name?
Signup and view all the flashcards
What is SHOW TABLES?
What is SHOW TABLES?
Signup and view all the flashcards
What is ALTER TABLE?
What is ALTER TABLE?
Signup and view all the flashcards
What is DROP?
What is DROP?
Signup and view all the flashcards
What is INSERT INTO?
What is INSERT INTO?
Signup and view all the flashcards
What is SELECT * FROM table_name?
What is SELECT * FROM table_name?
Signup and view all the flashcards
What is SELECT?
What is SELECT?
Signup and view all the flashcards
What is AS?
What is AS?
Signup and view all the flashcards
What is DISTINCT?
What is DISTINCT?
Signup and view all the flashcards
What is WHERE clause?
What is WHERE clause?
Signup and view all the flashcards
What is BETWEEN?
What is BETWEEN?
Signup and view all the flashcards
What is IN operator?
What is IN operator?
Signup and view all the flashcards
What is ORDER BY clause?
What is ORDER BY clause?
Signup and view all the flashcards
What is DESC keyword?
What is DESC keyword?
Signup and view all the flashcards
What is NULL value?
What is NULL value?
Signup and view all the flashcards
What is LIKE operator?
What is LIKE operator?
Signup and view all the flashcards
What is UCASE() OR UPPER()?
What is UCASE() OR UPPER()?
Signup and view all the flashcards
What is LCASE() OR LOWER()?
What is LCASE() OR LOWER()?
Signup and view all the flashcards
What is LEFT()?
What is LEFT()?
Signup and view all the flashcards
What is RIGHT()?
What is RIGHT()?
Signup and view all the flashcards
What is LTRIM()?
What is LTRIM()?
Signup and view all the flashcards
What is RTRIM()?
What is RTRIM()?
Signup and view all the flashcards
What is TRIM()?
What is TRIM()?
Signup and view all the flashcards
What is NOW()?
What is NOW()?
Signup and view all the flashcards
What is DATE()?
What is DATE()?
Signup and view all the flashcards
Study Notes
Introduction
- Relational Database Management Systems (RDBMS) allow the creation of databases with relations
- RDBMS facilitates storing, retrieving, and manipulating data through queries
- This chapter covers creating, populating, and querying databases using MySQL
SQL
- Structured Query Language (SQL) is used to access and manipulate data in a database management system, offering a special kind of language
- SQL is a popular query language for relational database systems
- The statements are easy to learn, written with descriptive English words, and are case insensitive
- SQL simplifies database interaction
- Users specify what should be retrieved, and SQL handles the process
- SQL offers statements for defining data structure, constraints, manipulating data, and retrieving data in various ways
Installing MySQL
- MySQL is open source RDBMS software available for download
- After installing, the MySQL service should to be started
- The
mysql>
prompt indicates MySQL is ready for SQL statements
Notes for using SQL
- SQL is case-insensitive
- End all SQL statements with a semicolon (;)
- When entering multi-line SQL, do not end the first line with a semicolon, then enter continues on the next line
- The prompt changes to
->
to indicate statement continuation until the final line with a semicolon is entered
Data Types and Constraints in MySQL
- Databases consist of relations, and relations consist of attributes (columns)
- Each attribute must have a data type
- Constraints can be set for each attribute of a relation
Data type of Attribute
- The data type indicates what kind of data can be stored in each attribute
- Specifies the operations that can be performed
- Date, time, numeric and string data types are most commonly used
Commonly used data types
CHAR(n)
: Stores fixed-length character data for specifiedn
, which can be between 0-255, padded with spaces if less thann
VARCHAR(n)
: Stores variable-length character data can be between 0-65535, actual storage depends on string lengthINT
: Stores integer values occupying 4 bytes, for larger values, use BIGINTFLOAT
: Stores numbers with decimal points, occupying 4 bytesDATE
: Stores dates inYYYY-MM-DD
format, supported range is1000-01-01
to9999-12-31
Constraints
- Restrictions on data values within an attribute, used to ensure data correctness
- Defining constrains is not mandatory for every attribute
Commonly used Constraints
NOT NULL
: Ensures the column cannot have a NULL value (missing, unknown or not applicable)UNIQUE
: All values in the column are distinctDEFAULT
: Sets a default if no value is specifiedPRIMARY KEY
: Uniquely identifies each row/record in a tableFOREIGN KEY
: References the primary key of another table
SQL for Data Definition
- Data requires a relation schema definition before storing
- Defining a schema involves creating a relation, naming a relation, identifying attributes and deciding on data types
- Specify constraints to meet any requirements
- SQL allows statements for defining, modifying, and deleting relation schemas
- These schema operations are part of Data Definition Language (DDL)
Database Creation
- Databases store data in relations or tables
CREATE
statement is used to create a database
CREATE Database
- Use the following syntax:
CREATE DATABASE databasename;
- To create a StudentAttendance database, the command is as follows:
CREATE DATABASE StudentAttendance;
Notes About Linux
- Database and table names are case-sensitive
- Not case-sensitive in Windows, it is good practice to write names as they were initially
- Databse creation enables management of multiple databases
Selecting a Database
- Use the statement
SHOW DATABASES
to determine existing databases - Select with the
USE
command, soUSE StudentAttendance
is required to use the StudentAttendance database
Checking Empty Databses
- Initially, created databases are empty
- Confirmed with the
SHOW TABLES
statement
Creating Tables
- Use the CREATE TABLE statement to define the layout of the tables
Create Table Syntax
- Use the following syntax:
CREATE TABLE tablename( attribute1 datatype constraint, attribute2 datatype constraint, ... attributenN datatype constraint);
Points To Keep In Mind
- Degree of the relation (N) is defined by the number of columns
- Give the attribute the name of the column
- Data type is the value type the attribute can hold
- Constraint indicates the restrictions to the values of an attribute
- By default all attributes take NULL except the primary key
Identifying data types and attributes
- The table STUDENT are identified along with their constraints (if applicable)
- Limit maximum students in a class to 100, and roll numbers in a sequence from 1 to 100 i.e. 3 digits which use INT data type
- The Student Name (SName) can vary in length, but assuming 20 digits will be enough, use data type VARCHAR(20)
- The data type for the attribute SDateofBirth is DATE
- If using guardian's 12 digit Aadhaar number as GUID, declare GUID as CHAR (12) since Aadhaar number is of fixed length
Creating tables
- Create tables without specifying constraints along with attribute names for simplification
- Constraints are incorporated in Section 9.4.4
Example 9.1: Create table STUDENT
- Example command is
CREATE TABLE STUDENT( -> RollNumber INT, -> SName VARCHAR(20), -> SDateofBirth DATE, -> GUID CHAR (12), -> PRIMARY KEY (RollNumber));
Notes about commands
- Use "," is used to separate two attributes
- Each statement terminates with a semi-colon (;)
- "->" Is an interactive continuation prompt if one enters an unfinished statement, the SQL shell will wait to enter the rest of the statement
Describe Table
- View the structure of an existing table using the DESCRIBE or DESC statement
- Example command is
DESCRIBE STUDENT;
Show table
- See available tables in the database using SHOW TABLES
Alter table
- The table structure can be changed after initial creation
- Using the ALTER statment enables the addition, removal and modifications of attribute datatypes and add constraints
A. Add primary key to a relation
- Alter the tables created by adding a primary key to the GUARDIAN relation
- Command example:
ALTER TABLE GUARDIAN ADD PRIMARY KEY (GUID);
- Records and Duplicates warnings indicate the values must be checked
Add Primary Key to the ATTENDANCE relation
- The primary key includes the composite key made up of the attributes, AttendanceDate and RollNumber
- Example Command:
ALTER TABLE ATTENDANCE -> ADD PRIMARY KEY (AttendanceDate, RollNumber);
B. Add Foreign keys
- Observation points while adding to a foreign key to a relation
- The reference relation must be created and the referenced attribute(s) musy be apart of the primary key of the referenced relation
- The datatypes and size must match the referencing attributes
Alter table syntax
- Example syntax:
ALTER TABLE table_name ADD FOREIGN KEY(attribute name) REFERENCES referenced_table_name (attribute name);
Example Adding Key To a Student table
- Add a key to the table "Student"
- Command syntax:
ALTER TABLE STUDENT -> ADD FOREIGN KEY(GUID) REFERENCES -> GUARDIAN(GUID);
C. Adding Constraint Unique
- In the GUARDIAN table, the GPhone attribute adds a contraint Unique meaning there must be no two of the same values
- Command syntax:
ALTER TABLE table_name ADD UNIQUE (attribute name);
D. Add an attribute to an existing statement
- We use the ADD attribute statement
- Command Synax:
ALTER TABLE table_name ADD attribute name DATATYPE;
E. Modifying Datatype of An Attribute
- We can change data types with the ALTER statement.
- Command Syntax:
ALTER TABLE table_name MODIFY attribute DATATYPE;
- We may want to change the GAddress from VARCHAR(30) to VARCHAR(40) by using the command:
ALTER TABLE GUARDIAN -> MODIFY GAddress VARCHAR(40);
F. Modify an existing constraint
- An attribute with not null values can be changed with an alter statement .
- Command syntax:
ALTER TABLE table_name MODIFY attribute DATATYPE NOT NULL;
- We must specify the datatype of the alter table while using MODIFY
- Example: We want a 'Student name' (SName) of type STUDENT is not null; so the following code is written:
ALTER TABLE STUDENT -> MODIFY SName VARCHAR(20) NOT NULL;
G. Add default value to an attribute
- If the desire of want to define a default value it is done the following way
- Synax:
ALTER TABLE table_name MODIFY attibute DATATYPE DEFAULT default_value;
- Specify the datatype of the attribute along with DEFAULT to add and configure a default value.
H. Remove an attribute
- Attributes can be removed with ALTER table
- We give an example,
ALTER TABLE table_name DROP attribute;
this will remove the respective attribute. Ex:ALTER TABLE GUARDIAN DROP income;
I. Remove primary key from the table
- Alter Table allows to add different keys by writing the following:
ALTER TABLE table_name DROP PRIMARY KEY;
Drop Statement
- Removes a table from the system
- Can also remove an entire database and all of its tables
- Should be carried out cautiously
Drop Table Syntax
DROP TABLE tablename;
Drop Database Syntax
DROP DATABASE databasename;
SQL for Data Manipulation
- When a table is created, only its structure and not its data exists
INSERT
is used to populateDELETE
andUPDATE
statements are used to update/remove table records which belong to DML
Insertion of Records
- UseÂ
INSERT INTO
 to insert data - Syntax:
INSERT INTO tablename VALUES
(value 1, value 2,….);`. Value 1 belongs to attribute 1 and value 2 belongs to attribute 2 so on
Additional notes when inserting
- Attributes don't need to be specified for the insert if statement has the same number of specified values
- Insert, record into a table with the foreign key to make sure other records in reference tables are populated
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.