SlideShare a Scribd company logo
Introduction To
Databases
Basicprogramming experience
WHAT ARE Databases?
 PHP mysql  Introduction database
 PHP mysql  Introduction database
size
ease of updating
accuracy
security
redundancy
importance
size
ease of updating
accuracy
security
redundancy
importance
 PHP mysql  Introduction database
size
ease of updating
accuracy
security
redundancy
importance
size
ease of updating
accuracy
security
redundancy
importance
 PHP mysql  Introduction database
size
ease of updating
accuracy
security
redundancy
importance
size
ease of updating
accuracy
security
redundancy
importance
 PHP mysql  Introduction database
size
ease of updating
accuracy
security
redundancy
importance
size
ease of updating
accuracy
security
redundancy
importance
 PHP mysql  Introduction database
size
ease of updating
accuracy
security
redundancy
importance
size
ease of updating
accuracy
security
redundancy
importance
 PHP mysql  Introduction database
size
ease of updating
accuracy
security
redundancy
importance
size
ease of updating
accuracy
security
redundancy
importance
 PHP mysql  Introduction database
size
ease of updating
accuracy
security
redundancy
importance
Database Management Systems(DBMS)
Oracle
SQL Server
MySQL
PostgreSQL
MongoDB
…
DBMS
Software
database database
Other DBMS
Relational database features
table table
table
database
table
columns
rows
 PHP mysql  Introduction database
table
columns
rows
FirstName LastName HireDate Grade Salary City
table
columns
rows
FirstName
(text)
LastName
(text)
HireDate
(Date)
Grade
(numeric)
Salary
(currency)
City
(text)
table
columns
rows
FirstName
(text)
LastName
(text)
HireDate
(Date)
Grade
(numeric)
Salary
(currency)
City
(text)
James Black 03/10/2014 7 15000 HYD
table
columns
rows
FirstName
(text)
LastName
(text)
HireDate
(Date)
Grade
(numeric)
Salary
(currency)
City
(text)
FirstName LastName 03/10/2013 8 15000 CA
James Black 03/10/2014 7 15000 HYD
FirstName LastName 03/10/2013 8 15000 CA
FirstName LastName 03/10/2013 8 15000 CA
FirstName LastName 03/10/2013 8 15000 CA
table
columns
rows
WHAT IS A DATABASE?
•A database is a bunch of information
–It is a structured collection of information
–It contains basic objects, called records or entries
–The records contain fields, which contain defined types of
data, somehow related to that record.
–A university database would contain for example all kinds
of students as records, and students properties (ID,name,
etc) as fields.
WHAT IS A DATABASE?
•A database is searchable
–It contains an index (table of content, catalog)
•It is updated regularly
–New data goes in
•Obsolete, old data goes out
–It is cross referenced To other databases
WHY DATABASES?
•The main purpose of databases is not only to collect and
organize data, but to allow advanced data retrieval and
analysis
•A database query is a method to retrieve information from the
database
•The organization of records into fields allows us to use
queries on fields.
DATABASES ON THE INTERNET
USER
DATABASE
SERVER
WEBSERVERS
Introduction to MySQL
ROAD MAP
•Introduction to MySQL
•Connecting and Disconnecting
•Entering Basic Queries
•Creating and Using a Database
MySQL
•MySQL is a very popular, open source database.
•Officially pronounced “my Ess Que Ell” (not my sequel).
•Handles very large databases; very fast performance.
•Why are we using MySQL?
–Free (much cheaper than Oracle!)
–Each student can install MySQL locally.
–Easy to use Shell for creating tables, querying tables, etc.
–Easy to use with PHP
CONNECTING TO MYSQL
•MySQL provides an interactive shell for creating tables,
inserting data, etc.
•On Windows, just go to c:mysqlbin, and type:
•Mysql –u root -p
•Or, click on the Windows icon
SAMPLE SESSION
 For example:
Enter password: *****
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 241 to server version: 3.23.49
Type 'help;' or 'h' for help. Type 'c' to clear the buffer.
mysql>
 To exit the MySQL Shell, just type QUIT or EXIT:
mysql> QUIT
mysql> exit
BASIC QUERIES
 Once logged in, you can try some simple queries.
 For example:
mysql> SELECT VERSION(), CURRENT_DATE;
+-----------+--------------+
| VERSION() | CURRENT_DATE |
+-----------+--------------+
| 3.23.49 | 2002-05-26 |
+-----------+--------------+
1 row in set (0.00 sec)
 Note that most MySQL commands end with a semicolon (;)
 MySQL returns the total number of rows found, and the total time to
execute the query.
BASIC QUERIES
 Keywords may be entered in any lettercase.
 The following queries are equivalent:
mysql> SELECT VERSION(), CURRENT_DATE;
mysql> select version(), current_date;
mysql> SeLeCt vErSiOn(), current_DATE;
BASIC QUERIES
 Here's another query. It demonstrates that you
can use mysql as a simple calculator:
mysql> SELECT SIN(PI()/4), (4+1)*5;
+-------------+---------+
| SIN(PI()/4) | (4+1)*5 |
+-------------+---------+
| 0.707107 | 25 |
+-------------+---------+
BASIC QUERIES
 You can also enter multiple statements on a
single line. Just end each one with a semicolon:
mysql> SELECT VERSION(); SELECT NOW();
+--------------+
| VERSION() |
+--------------+
| 3.22.20a-log |
+--------------+
+---------------------+
| NOW() |
+---------------------+
| 2004 00:15:33 |
+---------------------+
MULTI-LINE COMMANDS
 mysql determines where your statement ends by
looking for the terminating semicolon, not by
looking for the end of the input line.
 Here's a simple multiple-line statement:
mysql> SELECT
-> USER()
-> ,
-> CURRENT_DATE;
+--------------------+--------------+
| USER() | CURRENT_DATE |
+--------------------+--------------+
| joesmith@localhost | 1999-03-18 |
+--------------------+--------------+
CANCELING A COMMAND
 If you decide you don't want to execute a
command that you are in the process of entering,
cancel it by typing c
mysql> SELECT
-> USER()
-> c
mysql>
USING A DATABASE
 To get started on your own database, first check
which databases currently exist.
 Use the SHOW statement to find out which
databases currently exist on the server:
mysql> show databases;
+----------+
| Database |
+----------+
| mysql |
| test |
+----------+
2 rows in set (0.01 sec)
USING A DATABASE
 To create a new database, issue the “create
database” command:
 mysql> create database webdb;
 To the select a database, issue the “use” command:
 mysql> use webdb;
CREATING A TABLE
 Let’s create a table for storing pets.
 Table: pets
 name: VARCHAR(20)
 owner: VARCHAR(20)
 species: VARCHAR(20)
 gender: CHAR(1)
 birth: DATE
 date: DATE
CREATING A TABLE
 To create a table, use the CREATE TABLE
command:
mysql> CREATE TABLE pet (
-> name VARCHAR(20),
-> owner VARCHAR(20),
-> species VARCHAR(20),
-> gender CHAR(1),
-> birth DATE, death DATE);
Query OK, 0 rows affected (0.04 sec)
SHOWING TABLES
 To verify that the table has been created:
mysql> show tables;
+------------------+
| Tables_in_test |
+------------------+
| pet |
+------------------+
1 row in set (0.01 sec)
DESCRIBING TABLES
 To view a table structure, use the DESCRIBE
command:
mysql> describe pet;
+---------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+---------+-------------+------+-----+---------+-------+
| name | varchar(20) | YES | | NULL | |
| owner | varchar(20) | YES | | NULL | |
| species | varchar(20) | YES | | NULL | |
| sex | char(1) | YES | | NULL | |
| birth | date | YES | | NULL | |
| death | date | YES | | NULL | |
+---------+-------------+------+-----+---------+-------+
6 rows in set (0.02 sec)
DELETING A TABLE
 To delete an entire table, use the DROP
TABLE command:
mysql> drop table pet;
Query OK, 0 rows affected (0.02 sec)

More Related Content

What's hot (19)

Working with Databases and MySQL
Working with Databases and MySQL
Nicole Ryan
 
Mysql all
Mysql all
Prof. Wim Van Criekinge
 
Mysql all
Mysql all
Prof. Wim Van Criekinge
 
Introduction to Mysql
Introduction to Mysql
Tushar Chauhan
 
Introduction databases and MYSQL
Introduction databases and MYSQL
Naeem Junejo
 
4.3 MySQL + PHP
4.3 MySQL + PHP
Jalpesh Vasa
 
Beginner guide to mysql command line
Beginner guide to mysql command line
Priti Solanki
 
Database Connection With Mysql
Database Connection With Mysql
Harit Kothari
 
Php with MYSQL Database
Php with MYSQL Database
Computer Hardware & Trouble shooting
 
My sql technical reference manual
My sql technical reference manual
Mir Majid
 
MySQL For Oracle Developers
MySQL For Oracle Developers
Ronald Bradford
 
MySQL 8.0 New Features -- September 27th presentation for Open Source Summit
MySQL 8.0 New Features -- September 27th presentation for Open Source Summit
Dave Stokes
 
Mysql tutorial 5257
Mysql tutorial 5257
Phuong Do Anh
 
android sqlite
android sqlite
Deepa Rani
 
Open Source World June '21 -- JSON Within a Relational Database
Open Source World June '21 -- JSON Within a Relational Database
Dave Stokes
 
Discover the Power of the NoSQL + SQL with MySQL
Discover the Power of the NoSQL + SQL with MySQL
Dave Stokes
 
JavaScript and Friends August 20th, 20201 -- MySQL Shell and JavaScript
JavaScript and Friends August 20th, 20201 -- MySQL Shell and JavaScript
Dave Stokes
 
Python SQite3 database Tutorial | SQlite Database
Python SQite3 database Tutorial | SQlite Database
ElangovanTechNotesET
 
MYSQL - PHP Database Connectivity
MYSQL - PHP Database Connectivity
V.V.Vanniaperumal College for Women
 
Working with Databases and MySQL
Working with Databases and MySQL
Nicole Ryan
 
Introduction databases and MYSQL
Introduction databases and MYSQL
Naeem Junejo
 
Beginner guide to mysql command line
Beginner guide to mysql command line
Priti Solanki
 
Database Connection With Mysql
Database Connection With Mysql
Harit Kothari
 
My sql technical reference manual
My sql technical reference manual
Mir Majid
 
MySQL For Oracle Developers
MySQL For Oracle Developers
Ronald Bradford
 
MySQL 8.0 New Features -- September 27th presentation for Open Source Summit
MySQL 8.0 New Features -- September 27th presentation for Open Source Summit
Dave Stokes
 
android sqlite
android sqlite
Deepa Rani
 
Open Source World June '21 -- JSON Within a Relational Database
Open Source World June '21 -- JSON Within a Relational Database
Dave Stokes
 
Discover the Power of the NoSQL + SQL with MySQL
Discover the Power of the NoSQL + SQL with MySQL
Dave Stokes
 
JavaScript and Friends August 20th, 20201 -- MySQL Shell and JavaScript
JavaScript and Friends August 20th, 20201 -- MySQL Shell and JavaScript
Dave Stokes
 
Python SQite3 database Tutorial | SQlite Database
Python SQite3 database Tutorial | SQlite Database
ElangovanTechNotesET
 

Viewers also liked (20)

Designing For Ajax
Designing For Ajax
Bill Scott
 
Building Large jQuery Applications
Building Large jQuery Applications
Rebecca Murphey
 
Beginning Jquery In Drupal Theming
Beginning Jquery In Drupal Theming
Rob Knight
 
Ajax for PHP Developers
Ajax for PHP Developers
Michael Girouard
 
BITS: Introduction to relational databases and MySQL - SQL
BITS: Introduction to relational databases and MySQL - SQL
BITS
 
MySQL Query Optimization (Basics)
MySQL Query Optimization (Basics)
Karthik .P.R
 
MySQL Introduction
MySQL Introduction
mysql content
 
Understanding angular js
Understanding angular js
Aayush Shrestha
 
jQuery for beginners
jQuery for beginners
Arulmurugan Rajaraman
 
Learning jQuery in 30 minutes
Learning jQuery in 30 minutes
Simon Willison
 
Introduction to MySQL
Introduction to MySQL
Giuseppe Maxia
 
MySQL Atchitecture and Concepts
MySQL Atchitecture and Concepts
Tuyen Vuong
 
User Interface Design in Software Engineering SE15
User Interface Design in Software Engineering SE15
koolkampus
 
Mysql introduction
Mysql introduction
Prof. Wim Van Criekinge
 
Software engineering lecture notes
Software engineering lecture notes
Siva Ayyakutti
 
Priciples of management ppt final
Priciples of management ppt final
rajakamalesha
 
VISIONS OF THE FUTURE Little Rock 2016
VISIONS OF THE FUTURE Little Rock 2016
Brian Housand
 
Management ppt
Management ppt
Yen Garcia
 
MySQL DBA OCP 1Z0-883
MySQL DBA OCP 1Z0-883
Kwaye Kant
 
Basic concept of management
Basic concept of management
vishalarvindbhole
 
Designing For Ajax
Designing For Ajax
Bill Scott
 
Building Large jQuery Applications
Building Large jQuery Applications
Rebecca Murphey
 
Beginning Jquery In Drupal Theming
Beginning Jquery In Drupal Theming
Rob Knight
 
BITS: Introduction to relational databases and MySQL - SQL
BITS: Introduction to relational databases and MySQL - SQL
BITS
 
MySQL Query Optimization (Basics)
MySQL Query Optimization (Basics)
Karthik .P.R
 
Understanding angular js
Understanding angular js
Aayush Shrestha
 
Learning jQuery in 30 minutes
Learning jQuery in 30 minutes
Simon Willison
 
MySQL Atchitecture and Concepts
MySQL Atchitecture and Concepts
Tuyen Vuong
 
User Interface Design in Software Engineering SE15
User Interface Design in Software Engineering SE15
koolkampus
 
Software engineering lecture notes
Software engineering lecture notes
Siva Ayyakutti
 
Priciples of management ppt final
Priciples of management ppt final
rajakamalesha
 
VISIONS OF THE FUTURE Little Rock 2016
VISIONS OF THE FUTURE Little Rock 2016
Brian Housand
 
Management ppt
Management ppt
Yen Garcia
 
MySQL DBA OCP 1Z0-883
MySQL DBA OCP 1Z0-883
Kwaye Kant
 
Ad

Similar to PHP mysql Introduction database (20)

Using Mysql.pptx
Using Mysql.pptx
StephenEfange3
 
Intro to my sql
Intro to my sql
Minhaj Kazi
 
Intro to my sql
Intro to my sql
sagaroceanic11
 
Introduction To MySQL Lecture 1
Introduction To MySQL Lecture 1
Ajay Khatri
 
mysql-Tutorial with Query presentation.ppt
mysql-Tutorial with Query presentation.ppt
aptechaligarh
 
介绍 MySQL
介绍 MySQL
YUCHENG HU
 
Getting Started with MySQL I
Getting Started with MySQL I
Sankhya_Analytics
 
MySql slides (ppt)
MySql slides (ppt)
webhostingguy
 
MySQL Database System Hiep Dinh
MySQL Database System Hiep Dinh
webhostingguy
 
mysqlHiep.ppt
mysqlHiep.ppt
webhostingguy
 
mysqlanditsbasiccommands-150226033905-conversion-gate02.pdf
mysqlanditsbasiccommands-150226033905-conversion-gate02.pdf
pradnyamulay
 
Mysql basics1
Mysql basics1
Steffy Robert
 
MySQL and its basic commands
MySQL and its basic commands
Bwsrang Basumatary
 
Lecture3 mysql gui by okello erick
Lecture3 mysql gui by okello erick
okelloerick
 
My SQL
My SQL
Karan Kashyap
 
My sql1
My sql1
NV Chandra Sekhar Nittala
 
DATA BASE || INTRODUCTION OF DATABASE \\ SQL 2018
DATA BASE || INTRODUCTION OF DATABASE \\ SQL 2018
teachersduniya.com
 
Mysql Database and query formation using
Mysql Database and query formation using
rkmvedant
 
MYSql manage db
MYSql manage db
Ahmed Farag
 
My sql.ppt
My sql.ppt
MAGNA COLLEGE OF ENGINEERING
 
Introduction To MySQL Lecture 1
Introduction To MySQL Lecture 1
Ajay Khatri
 
mysql-Tutorial with Query presentation.ppt
mysql-Tutorial with Query presentation.ppt
aptechaligarh
 
Getting Started with MySQL I
Getting Started with MySQL I
Sankhya_Analytics
 
MySQL Database System Hiep Dinh
MySQL Database System Hiep Dinh
webhostingguy
 
mysqlanditsbasiccommands-150226033905-conversion-gate02.pdf
mysqlanditsbasiccommands-150226033905-conversion-gate02.pdf
pradnyamulay
 
Lecture3 mysql gui by okello erick
Lecture3 mysql gui by okello erick
okelloerick
 
DATA BASE || INTRODUCTION OF DATABASE \\ SQL 2018
DATA BASE || INTRODUCTION OF DATABASE \\ SQL 2018
teachersduniya.com
 
Mysql Database and query formation using
Mysql Database and query formation using
rkmvedant
 
Ad

More from Mudasir Syed (20)

Error reporting in php
Error reporting in php
Mudasir Syed
 
Cookies in php lecture 2
Cookies in php lecture 2
Mudasir Syed
 
Cookies in php lecture 1
Cookies in php lecture 1
Mudasir Syed
 
Ajax
Ajax
Mudasir Syed
 
Reporting using FPDF
Reporting using FPDF
Mudasir Syed
 
Oop in php lecture 2
Oop in php lecture 2
Mudasir Syed
 
Oop in php lecture 2
Oop in php lecture 2
Mudasir Syed
 
Filing system in PHP
Filing system in PHP
Mudasir Syed
 
Time manipulation lecture 2
Time manipulation lecture 2
Mudasir Syed
 
Time manipulation lecture 1
Time manipulation lecture 1
Mudasir Syed
 
Php Mysql
Php Mysql
Mudasir Syed
 
Adminstrating Through PHPMyAdmin
Adminstrating Through PHPMyAdmin
Mudasir Syed
 
Sql select
Sql select
Mudasir Syed
 
PHP mysql Sql
PHP mysql Sql
Mudasir Syed
 
PHP mysql Mysql joins
PHP mysql Mysql joins
Mudasir Syed
 
PHP mysql Installing my sql 5.1
PHP mysql Installing my sql 5.1
Mudasir Syed
 
PHP mysql Er diagram
PHP mysql Er diagram
Mudasir Syed
 
PHP mysql Database normalizatin
PHP mysql Database normalizatin
Mudasir Syed
 
PHP mysql Aggregate functions
PHP mysql Aggregate functions
Mudasir Syed
 
Form validation with built in functions
Form validation with built in functions
Mudasir Syed
 
Error reporting in php
Error reporting in php
Mudasir Syed
 
Cookies in php lecture 2
Cookies in php lecture 2
Mudasir Syed
 
Cookies in php lecture 1
Cookies in php lecture 1
Mudasir Syed
 
Reporting using FPDF
Reporting using FPDF
Mudasir Syed
 
Oop in php lecture 2
Oop in php lecture 2
Mudasir Syed
 
Oop in php lecture 2
Oop in php lecture 2
Mudasir Syed
 
Filing system in PHP
Filing system in PHP
Mudasir Syed
 
Time manipulation lecture 2
Time manipulation lecture 2
Mudasir Syed
 
Time manipulation lecture 1
Time manipulation lecture 1
Mudasir Syed
 
Adminstrating Through PHPMyAdmin
Adminstrating Through PHPMyAdmin
Mudasir Syed
 
PHP mysql Mysql joins
PHP mysql Mysql joins
Mudasir Syed
 
PHP mysql Installing my sql 5.1
PHP mysql Installing my sql 5.1
Mudasir Syed
 
PHP mysql Er diagram
PHP mysql Er diagram
Mudasir Syed
 
PHP mysql Database normalizatin
PHP mysql Database normalizatin
Mudasir Syed
 
PHP mysql Aggregate functions
PHP mysql Aggregate functions
Mudasir Syed
 
Form validation with built in functions
Form validation with built in functions
Mudasir Syed
 

Recently uploaded (20)

IDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptx
ArneeAgligar
 
How to Configure Vendor Management in Lunch App of Odoo 18
How to Configure Vendor Management in Lunch App of Odoo 18
Celine George
 
How to Manage & Create a New Department in Odoo 18 Employee
How to Manage & Create a New Department in Odoo 18 Employee
Celine George
 
What are the benefits that dance brings?
What are the benefits that dance brings?
memi27
 
Paper 108 | Thoreau’s Influence on Gandhi: The Evolution of Civil Disobedience
Paper 108 | Thoreau’s Influence on Gandhi: The Evolution of Civil Disobedience
Rajdeep Bavaliya
 
Webcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Webcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Veera Pallapu
 
LDMMIA GRAD Student Check-in Orientation Sampler
LDMMIA GRAD Student Check-in Orientation Sampler
LDM & Mia eStudios
 
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Shrutidhara2
 
GEOGRAPHY-Study Material [ Class 10th] .pdf
GEOGRAPHY-Study Material [ Class 10th] .pdf
SHERAZ AHMAD LONE
 
LDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDM & Mia eStudios
 
Paper 109 | Archetypal Journeys in ‘Interstellar’: Exploring Universal Themes...
Paper 109 | Archetypal Journeys in ‘Interstellar’: Exploring Universal Themes...
Rajdeep Bavaliya
 
Exploring Ocean Floor Features for Middle School
Exploring Ocean Floor Features for Middle School
Marie
 
The Man In The Back – Exceptional Delaware.pdf
The Man In The Back – Exceptional Delaware.pdf
dennisongomezk
 
Publishing Your Memoir with Brooke Warner
Publishing Your Memoir with Brooke Warner
Brooke Warner
 
How to Create an Event in Odoo 18 - Odoo 18 Slides
How to Create an Event in Odoo 18 - Odoo 18 Slides
Celine George
 
Overview of Off Boarding in Odoo 18 Employees
Overview of Off Boarding in Odoo 18 Employees
Celine George
 
BUSINESS QUIZ PRELIMS | QUIZ CLUB OF PSGCAS | 9 SEPTEMBER 2024
BUSINESS QUIZ PRELIMS | QUIZ CLUB OF PSGCAS | 9 SEPTEMBER 2024
Quiz Club of PSG College of Arts & Science
 
Chalukyas of Gujrat, Solanki Dynasty NEP.pptx
Chalukyas of Gujrat, Solanki Dynasty NEP.pptx
Dr. Ravi Shankar Arya Mahila P. G. College, Banaras Hindu University, Varanasi, India.
 
Sustainable Innovation with Immersive Learning
Sustainable Innovation with Immersive Learning
Leonel Morgado
 
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Restu Bias Primandhika
 
IDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptx
ArneeAgligar
 
How to Configure Vendor Management in Lunch App of Odoo 18
How to Configure Vendor Management in Lunch App of Odoo 18
Celine George
 
How to Manage & Create a New Department in Odoo 18 Employee
How to Manage & Create a New Department in Odoo 18 Employee
Celine George
 
What are the benefits that dance brings?
What are the benefits that dance brings?
memi27
 
Paper 108 | Thoreau’s Influence on Gandhi: The Evolution of Civil Disobedience
Paper 108 | Thoreau’s Influence on Gandhi: The Evolution of Civil Disobedience
Rajdeep Bavaliya
 
Webcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Webcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Veera Pallapu
 
LDMMIA GRAD Student Check-in Orientation Sampler
LDMMIA GRAD Student Check-in Orientation Sampler
LDM & Mia eStudios
 
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Shrutidhara2
 
GEOGRAPHY-Study Material [ Class 10th] .pdf
GEOGRAPHY-Study Material [ Class 10th] .pdf
SHERAZ AHMAD LONE
 
LDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDM & Mia eStudios
 
Paper 109 | Archetypal Journeys in ‘Interstellar’: Exploring Universal Themes...
Paper 109 | Archetypal Journeys in ‘Interstellar’: Exploring Universal Themes...
Rajdeep Bavaliya
 
Exploring Ocean Floor Features for Middle School
Exploring Ocean Floor Features for Middle School
Marie
 
The Man In The Back – Exceptional Delaware.pdf
The Man In The Back – Exceptional Delaware.pdf
dennisongomezk
 
Publishing Your Memoir with Brooke Warner
Publishing Your Memoir with Brooke Warner
Brooke Warner
 
How to Create an Event in Odoo 18 - Odoo 18 Slides
How to Create an Event in Odoo 18 - Odoo 18 Slides
Celine George
 
Overview of Off Boarding in Odoo 18 Employees
Overview of Off Boarding in Odoo 18 Employees
Celine George
 
Sustainable Innovation with Immersive Learning
Sustainable Innovation with Immersive Learning
Leonel Morgado
 
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Restu Bias Primandhika
 

PHP mysql Introduction database