SQL With MySQL - 1
SQL With MySQL - 1
Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Lecture - 1:
Page 1
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 2
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 3
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 4
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 5
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 6
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
-- tables ------------------------------------------------------------
--------------------------------
CREATE DATABASE IF NOT EXISTS sql_store2;
USE sql_store2;
CREATE TABLE customers
(
customer_id INT PRIMARY KEY AUTO_INCREMENT,
first_name VARCHAR(50) NOT NULL,
points INT NOT NULL DEFAULT 0,
email VARCHAR (255) NOT NULL UNIQUE
);
Page 7
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 8
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Lecture - 2:
Page 9
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 10
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 11
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 12
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 13
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 14
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 15
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 16
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 17
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 18
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 19
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
SELECT state
-- WHERE >,>=,<,<=,=,!=, <> FROM sql_store.customers ;
Page 20
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.
Intro. To Database Systems Instructor: Haider S. Ahad
Lecture Notes: SQL with MySQL haiderahad@gmail.com
Page 21
SQL skills remain highly sought-after across industries. Mastering SQL can significantly boost your career prospects.