SlideShare a Scribd company logo
Database Languges
• – Subset of SQL used to manipulate data in
databases
• – INSERT, DELETE, UPDATE statements
• – Subset of SQL used to describe database objects
• – CREATE, ALTER, DROP statements
• – Data types
• A data manipulation language (DML) is a family of syntax elements
similar to a computer programming .
• language used for selecting, inserting, deleting and updating data in
a database.
• A data definition language or data description language (DDL) is a
syntax similar to a computer programming language for defining
data structures, especially database objects.
Database Languges
Database Languges
• Syntax:
"Remove the Student from department":
• DELETE FROM Department
• WHERE DeptName = ‘Student’
Database Languges
DATA DEFINITION LANGUAGE
(DDL)
• DDL statements are used to build and
modify the structure of your tables and
other objects in the database.
• it is used to specify a database scheme as
a set of definitions.
• the Data Definition Language (DDL)
allows you to create, alter, and delete
database objects.
• Syntax:
• CREATE TABLE <name> (
• <list of elements>
• To Delete
• DROP TABLE <name>;
• To Alter
• To ALTER TABLE <name> ADD <element>
statements are used to define the
database structure or object.
statements are used for managing data
within objects.
Database Languges

More Related Content

PPTX
Structured Query Language (SQL)
PPTX
What is SQL Server?
PPTX
Ddl vs dml
PPTX
Sql - Structured Query Language
PPTX
Data concepts
PPTX
Structured query language(sql)ppt
PDF
Introduction to the Structured Query Language SQL
PPTX
Data definition language
Structured Query Language (SQL)
What is SQL Server?
Ddl vs dml
Sql - Structured Query Language
Data concepts
Structured query language(sql)ppt
Introduction to the Structured Query Language SQL
Data definition language

What's hot (20)

PPTX
Chapter 1 introduction to sql server
PPTX
Structured Query Language
PPTX
SQL for interview
PPTX
Introduction to (sql)
PPTX
Object relational database management system
ODP
Ms sql-server
PPTX
lovely
PPT
Introduction to sql
PPTX
Sql introduction
PPTX
DATABASE PRESENTATION
PPT
computer fund-database presentation
PPTX
Sql basics
PPT
Object Relational Database Management System
PPSX
IM02: Database Language
PPT
Introduction to Database Concepts
PPT
Introduction to SQL
PPTX
Sql commands
PPTX
SQL: Structured Query Language
PPT
Sql intro & ddl 1
PDF
Database Architecture and Basic Concepts
Chapter 1 introduction to sql server
Structured Query Language
SQL for interview
Introduction to (sql)
Object relational database management system
Ms sql-server
lovely
Introduction to sql
Sql introduction
DATABASE PRESENTATION
computer fund-database presentation
Sql basics
Object Relational Database Management System
IM02: Database Language
Introduction to Database Concepts
Introduction to SQL
Sql commands
SQL: Structured Query Language
Sql intro & ddl 1
Database Architecture and Basic Concepts
Ad

Similar to Database Languges (20)

PPTX
Veena
PPTX
Data Definition and Data Manipulation Language-DDL & DML
PPTX
DDL And DML
PPTX
DDL and DML.pptx ddl vs dml ddl and dml ddl and dml
PPTX
SQL Language for the Midterm Period.pptx
PDF
Web app development_my_sql_08
PPTX
Database Languages power point presentation
PPTX
BWU_BTA_22_403_Aishika Majumdar and all about cse
PPTX
Unit - II.pptx
PPTX
PPTX
Himani uppal-221302130 WP ppt.pptx
PPTX
dbms gdjdjdjehdhdjjdjdudjdjdjdhhdhdbdhdhdh
PPTX
dbms (3436737839399388838388383860).pptx
PPTX
DML DATA MAINUPULATION LANGUAGE
PPT
Sql basics and DDL statements
PDF
SQL_NOTES.pdf
PPTX
DDL DATA DEFINATION LANGUAGE
Veena
Data Definition and Data Manipulation Language-DDL & DML
DDL And DML
DDL and DML.pptx ddl vs dml ddl and dml ddl and dml
SQL Language for the Midterm Period.pptx
Web app development_my_sql_08
Database Languages power point presentation
BWU_BTA_22_403_Aishika Majumdar and all about cse
Unit - II.pptx
Himani uppal-221302130 WP ppt.pptx
dbms gdjdjdjehdhdjjdjdudjdjdjdhhdhdbdhdhdh
dbms (3436737839399388838388383860).pptx
DML DATA MAINUPULATION LANGUAGE
Sql basics and DDL statements
SQL_NOTES.pdf
DDL DATA DEFINATION LANGUAGE
Ad

Recently uploaded (20)

PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PDF
A comparative analysis of optical character recognition models for extracting...
PPTX
A Presentation on Artificial Intelligence
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Machine learning based COVID-19 study performance prediction
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
OMC Textile Division Presentation 2021.pptx
PPT
Teaching material agriculture food technology
PDF
Mushroom cultivation and it's methods.pdf
PDF
Empathic Computing: Creating Shared Understanding
PDF
Getting Started with Data Integration: FME Form 101
PPTX
Tartificialntelligence_presentation.pptx
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Network Security Unit 5.pdf for BCA BBA.
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
A comparative analysis of optical character recognition models for extracting...
A Presentation on Artificial Intelligence
Encapsulation_ Review paper, used for researhc scholars
Machine learning based COVID-19 study performance prediction
Building Integrated photovoltaic BIPV_UPV.pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
OMC Textile Division Presentation 2021.pptx
Teaching material agriculture food technology
Mushroom cultivation and it's methods.pdf
Empathic Computing: Creating Shared Understanding
Getting Started with Data Integration: FME Form 101
Tartificialntelligence_presentation.pptx
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Spectral efficient network and resource selection model in 5G networks
Network Security Unit 5.pdf for BCA BBA.

Database Languges

  • 2. • – Subset of SQL used to manipulate data in databases • – INSERT, DELETE, UPDATE statements • – Subset of SQL used to describe database objects • – CREATE, ALTER, DROP statements • – Data types
  • 3. • A data manipulation language (DML) is a family of syntax elements similar to a computer programming . • language used for selecting, inserting, deleting and updating data in a database. • A data definition language or data description language (DDL) is a syntax similar to a computer programming language for defining data structures, especially database objects.
  • 6. • Syntax: "Remove the Student from department": • DELETE FROM Department • WHERE DeptName = ‘Student’
  • 8. DATA DEFINITION LANGUAGE (DDL) • DDL statements are used to build and modify the structure of your tables and other objects in the database. • it is used to specify a database scheme as a set of definitions. • the Data Definition Language (DDL) allows you to create, alter, and delete database objects.
  • 9. • Syntax: • CREATE TABLE <name> ( • <list of elements> • To Delete • DROP TABLE <name>; • To Alter • To ALTER TABLE <name> ADD <element>
  • 10. statements are used to define the database structure or object. statements are used for managing data within objects.