SQL commands are instructions used to communicate with a database and perform tasks like creating tables, adding or modifying data, and setting user permissions. SQL commands are grouped into four categories: Data Definition Language for creating and modifying database structures; Data Manipulation Language for storing, retrieving, modifying, and deleting data; Transaction Control Language for managing data changes; and Data Control Language for providing security to database objects.
This document provides an introduction to SQL and its components. It defines SQL as a language for communicating with databases that uses a structure based on tables. The document outlines the learning objectives which are to understand SQL features, classify its components, differentiate between DDL and DML, and apply DML and DDL commands. It then discusses SQL features such as being a domain specific, declarative language used to manipulate and retrieve data from relational databases. The major SQL components covered are DDL for defining data structure, DML for manipulating data, DQL for querying data, DCL for controlling data access, and TCL for transaction management.
DDL, DML and DCL queries in SQL with its usage. How to use joining and different types of joining with suitable examples? Order by and group by commands with example queries. Sub queries and data integrity
The document discusses the basics of Data Manipulation Language (DML) queries in SQL. It describes the three main DML statements - INSERT, UPDATE, and DELETE - and provides examples of how to use each statement to add, modify, and remove data from database tables. It also briefly mentions that DML commands are not automatically committed to the database and can be rolled back.
PPT on SQL covering topics such as What is SQL, SQL Commands, Data Definition Language (DDL) Commands, Data Manipulation Language (DML) Commands, Data Control Language (DCL) Commands, Data Query Language (DQL) Commands.
This document discusses DML and DDL in SQL. DML is used to manipulate data in databases through statements like SELECT, UPDATE, DELETE, and INSERT. It allows users to specify and modify data. DDL is used to define and modify database structures through statements like CREATE, ALTER, DROP, TRUNCATE, and RENAME. DDL manages database schemas and DML manages the data. Both have advantages like shared data, integrity, security and efficiency.
The document provides an overview of SQL commands, dividing them into three categories: DDL, DML, and DCL. DDL commands like CREATE, ALTER, and DROP are used to define the database schema. DML commands such as INSERT, UPDATE, and DELETE are used to manipulate the data. DCL commands including GRANT and REVOKE control access privileges for the database. Examples of syntax are provided for many of the commands.
The document provides information about SQL (Structured Query Language). It defines SQL, describes what it is used for, lists some major RDBMS systems that use SQL, and explains that SQL allows users to query databases using English-like statements. It also discusses SQL basics like data definition language, data manipulation language, data control language, transaction control language, and data query language. Examples of SQL commands are provided for each along with explanations.
The document discusses the main categories of SQL commands: DDL for defining database structures, DML for manipulating data, DQL for selecting data, DCL for controlling data access, and commands for data administration and transaction control. Some key commands listed are CREATE TABLE, INSERT, UPDATE, DELETE, SELECT, GRANT, REVOKE, START AUDIT, COMMIT, and ROLLBACK. These commands allow users to create and manage database objects and data, run queries, control access privileges, audit operations, and manage transactions within a database.
SQL is a database language used to create, modify and query databases. It has four main categories of commands: DDL for defining database schemas; DQL for querying data; DML for manipulating data; and DCL for controlling access privileges. Some key commands include CREATE, SELECT, INSERT, UPDATE, DELETE, GRANT and REVOKE.
This document provides information on a presentation about the differences between DDL and DML. The presentation will be given by Shahbaz Khan Lund, Inayatullah Panhwar, Faveed Ali Siyal, and Sayed Karamat Ali Shah. DDL is used to define and manage database objects like tables, while DML allows users to manipulate data within those objects using commands like SELECT, INSERT, UPDATE and DELETE. Sayyed Karamat Shah will demonstrate DDL and DML statements practically during the presentation.
The document is a presentation about Structured Query Language (SQL) given by Md. Soumik Ahmmed from the Computer Science & Engineering department at Pundra University of Science & Technology. It defines SQL as a language used to store, manipulate, and retrieve data from relational databases. It outlines the main types of SQL commands, including data definition language, data manipulation language, data control language, transaction control language, and data query language. It provides examples of commands that fall under each language type and discusses the advantages and disadvantages of SQL.
SQL is a standard language used to store, manipulate, and retrieve data held in relational databases. It allows users to define and modify database schemas, as well as store and access data. SQL commands are divided into four main categories: data definition language (DDL) for defining databases, data manipulation language (DML) for manipulating data, data control language (DCL) for controlling user access, and transaction control language (TCL) for managing transactions. Common DDL commands include CREATE, ALTER, and DROP for creating, modifying, and deleting database objects like tables.
This document discusses the different types of SQL commands:
1. DDL commands (Data Definition Language) are used to define the database schema and include commands like CREATE, DROP, ALTER, and TRUNCATE.
2. DQL commands (Data Query Language) include the SELECT command to fetch data from databases.
3. DML commands (Data Manipulation Language) modify database data and include INSERT, UPDATE, and DELETE commands. DML commands are not automatically committed.
4. DCL commands (Data Control Language) grant and revoke user privileges with commands like GRANT and REVOKE.
In this slides discuss about the short introduction about Structured query language .. this slides is help for those students those study database relevant
Database languages are used to define, manipulate, and control access to data in a database management system. There are four main types of database languages: Data Definition Language (DDL) defines the database structure; Data Manipulation Language (DML) reads, inserts, updates, and deletes data; Data Control Language (DCL) controls user access privileges; and Transaction Control Language (TCL) manages transactions and rolling back or committing changes to the database.
SQL is a standard language for accessing and manipulating databases. It allows users to retrieve, insert, update, and delete data as well as create, modify and delete tables. The main SQL commands are grouped into four categories: data definition language for creating/modifying database structures, data manipulation language for interacting with data, transaction control language for managing transactions, and data control language for security. Common SQL commands include CREATE, SELECT, INSERT, UPDATE, DELETE, ALTER, and DROP.
This document discusses DML and DCL commands in SQL. It defines DML as commands that manipulate data in a database, including SELECT, INSERT, UPDATE, and DELETE. It defines DCL as commands that control access privileges and permissions, including GRANT and REVOKE. Examples are provided for each command to illustrate their syntax and use. The document concludes that understanding DCL and DML is important for effective database management and security.
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...Celine George
Analytic accounts are used to track and manage financial transactions related to specific projects, departments, or business units. They provide detailed insights into costs and revenues at a granular level, independent of the main accounting system. This helps to better understand profitability, performance, and resource allocation, making it easier to make informed financial decisions and strategic planning.
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsesushreesangita003
what is pulse ?
Purpose
physiology and Regulation of pulse
Characteristics of pulse
factors affecting pulse
Sites of pulse
Alteration of pulse
for BSC Nursing 1st semester
for Gnm Nursing 1st year
Students .
vitalsign
Ad
More Related Content
Similar to PPt on MY SQL basics and its types with examples (20)
This document discusses DML and DDL in SQL. DML is used to manipulate data in databases through statements like SELECT, UPDATE, DELETE, and INSERT. It allows users to specify and modify data. DDL is used to define and modify database structures through statements like CREATE, ALTER, DROP, TRUNCATE, and RENAME. DDL manages database schemas and DML manages the data. Both have advantages like shared data, integrity, security and efficiency.
The document provides an overview of SQL commands, dividing them into three categories: DDL, DML, and DCL. DDL commands like CREATE, ALTER, and DROP are used to define the database schema. DML commands such as INSERT, UPDATE, and DELETE are used to manipulate the data. DCL commands including GRANT and REVOKE control access privileges for the database. Examples of syntax are provided for many of the commands.
The document provides information about SQL (Structured Query Language). It defines SQL, describes what it is used for, lists some major RDBMS systems that use SQL, and explains that SQL allows users to query databases using English-like statements. It also discusses SQL basics like data definition language, data manipulation language, data control language, transaction control language, and data query language. Examples of SQL commands are provided for each along with explanations.
The document discusses the main categories of SQL commands: DDL for defining database structures, DML for manipulating data, DQL for selecting data, DCL for controlling data access, and commands for data administration and transaction control. Some key commands listed are CREATE TABLE, INSERT, UPDATE, DELETE, SELECT, GRANT, REVOKE, START AUDIT, COMMIT, and ROLLBACK. These commands allow users to create and manage database objects and data, run queries, control access privileges, audit operations, and manage transactions within a database.
SQL is a database language used to create, modify and query databases. It has four main categories of commands: DDL for defining database schemas; DQL for querying data; DML for manipulating data; and DCL for controlling access privileges. Some key commands include CREATE, SELECT, INSERT, UPDATE, DELETE, GRANT and REVOKE.
This document provides information on a presentation about the differences between DDL and DML. The presentation will be given by Shahbaz Khan Lund, Inayatullah Panhwar, Faveed Ali Siyal, and Sayed Karamat Ali Shah. DDL is used to define and manage database objects like tables, while DML allows users to manipulate data within those objects using commands like SELECT, INSERT, UPDATE and DELETE. Sayyed Karamat Shah will demonstrate DDL and DML statements practically during the presentation.
The document is a presentation about Structured Query Language (SQL) given by Md. Soumik Ahmmed from the Computer Science & Engineering department at Pundra University of Science & Technology. It defines SQL as a language used to store, manipulate, and retrieve data from relational databases. It outlines the main types of SQL commands, including data definition language, data manipulation language, data control language, transaction control language, and data query language. It provides examples of commands that fall under each language type and discusses the advantages and disadvantages of SQL.
SQL is a standard language used to store, manipulate, and retrieve data held in relational databases. It allows users to define and modify database schemas, as well as store and access data. SQL commands are divided into four main categories: data definition language (DDL) for defining databases, data manipulation language (DML) for manipulating data, data control language (DCL) for controlling user access, and transaction control language (TCL) for managing transactions. Common DDL commands include CREATE, ALTER, and DROP for creating, modifying, and deleting database objects like tables.
This document discusses the different types of SQL commands:
1. DDL commands (Data Definition Language) are used to define the database schema and include commands like CREATE, DROP, ALTER, and TRUNCATE.
2. DQL commands (Data Query Language) include the SELECT command to fetch data from databases.
3. DML commands (Data Manipulation Language) modify database data and include INSERT, UPDATE, and DELETE commands. DML commands are not automatically committed.
4. DCL commands (Data Control Language) grant and revoke user privileges with commands like GRANT and REVOKE.
In this slides discuss about the short introduction about Structured query language .. this slides is help for those students those study database relevant
Database languages are used to define, manipulate, and control access to data in a database management system. There are four main types of database languages: Data Definition Language (DDL) defines the database structure; Data Manipulation Language (DML) reads, inserts, updates, and deletes data; Data Control Language (DCL) controls user access privileges; and Transaction Control Language (TCL) manages transactions and rolling back or committing changes to the database.
SQL is a standard language for accessing and manipulating databases. It allows users to retrieve, insert, update, and delete data as well as create, modify and delete tables. The main SQL commands are grouped into four categories: data definition language for creating/modifying database structures, data manipulation language for interacting with data, transaction control language for managing transactions, and data control language for security. Common SQL commands include CREATE, SELECT, INSERT, UPDATE, DELETE, ALTER, and DROP.
This document discusses DML and DCL commands in SQL. It defines DML as commands that manipulate data in a database, including SELECT, INSERT, UPDATE, and DELETE. It defines DCL as commands that control access privileges and permissions, including GRANT and REVOKE. Examples are provided for each command to illustrate their syntax and use. The document concludes that understanding DCL and DML is important for effective database management and security.
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...Celine George
Analytic accounts are used to track and manage financial transactions related to specific projects, departments, or business units. They provide detailed insights into costs and revenues at a granular level, independent of the main accounting system. This helps to better understand profitability, performance, and resource allocation, making it easier to make informed financial decisions and strategic planning.
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsesushreesangita003
what is pulse ?
Purpose
physiology and Regulation of pulse
Characteristics of pulse
factors affecting pulse
Sites of pulse
Alteration of pulse
for BSC Nursing 1st semester
for Gnm Nursing 1st year
Students .
vitalsign
How to Subscribe Newsletter From Odoo 18 WebsiteCeline George
Newsletter is a powerful tool that effectively manage the email marketing . It allows us to send professional looking HTML formatted emails. Under the Mailing Lists in Email Marketing we can find all the Newsletter.
Ultimate VMware 2V0-11.25 Exam Dumps for Exam SuccessMark Soia
Boost your chances of passing the 2V0-11.25 exam with CertsExpert reliable exam dumps. Prepare effectively and ace the VMware certification on your first try
Quality dumps. Trusted results. — Visit CertsExpert Now: https://www.certsexpert.com/2V0-11.25-pdf-questions.html
Multi-currency in odoo accounting and Update exchange rates automatically in ...Celine George
Most business transactions use the currencies of several countries for financial operations. For global transactions, multi-currency management is essential for enabling international trade.
GDGLSPGCOER - Git and GitHub Workshop.pptxazeenhodekar
This presentation covers the fundamentals of Git and version control in a practical, beginner-friendly way. Learn key commands, the Git data model, commit workflows, and how to collaborate effectively using Git — all explained with visuals, examples, and relatable humor.
The Pala kings were people-protectors. In fact, Gopal was elected to the throne only to end Matsya Nyaya. Bhagalpur Abhiledh states that Dharmapala imposed only fair taxes on the people. Rampala abolished the unjust taxes imposed by Bhima. The Pala rulers were lovers of learning. Vikramshila University was established by Dharmapala. He opened 50 other learning centers. A famous Buddhist scholar named Haribhadra was to be present in his court. Devpala appointed another Buddhist scholar named Veerdeva as the vice president of Nalanda Vihar. Among other scholars of this period, Sandhyakar Nandi, Chakrapani Dutta and Vajradatta are especially famous. Sandhyakar Nandi wrote the famous poem of this period 'Ramcharit'.
Understanding P–N Junction Semiconductors: A Beginner’s GuideGS Virdi
Dive into the fundamentals of P–N junctions, the heart of every diode and semiconductor device. In this concise presentation, Dr. G.S. Virdi (Former Chief Scientist, CSIR-CEERI Pilani) covers:
What Is a P–N Junction? Learn how P-type and N-type materials join to create a diode.
Depletion Region & Biasing: See how forward and reverse bias shape the voltage–current behavior.
V–I Characteristics: Understand the curve that defines diode operation.
Real-World Uses: Discover common applications in rectifiers, signal clipping, and more.
Ideal for electronics students, hobbyists, and engineers seeking a clear, practical introduction to P–N junction semiconductors.
Title: A Quick and Illustrated Guide to APA Style Referencing (7th Edition)
This visual and beginner-friendly guide simplifies the APA referencing style (7th edition) for academic writing. Designed especially for commerce students and research beginners, it includes:
✅ Real examples from original research papers
✅ Color-coded diagrams for clarity
✅ Key rules for in-text citation and reference list formatting
✅ Free citation tools like Mendeley & Zotero explained
Whether you're writing a college assignment, dissertation, or academic article, this guide will help you cite your sources correctly, confidently, and consistent.
Created by: Prof. Ishika Ghosh,
Faculty.
📩 For queries or feedback: [email protected]
INTRO TO STATISTICS
INTRO TO SPSS INTERFACE
CLEANING MULTIPLE CHOICE RESPONSE DATA WITH EXCEL
ANALYZING MULTIPLE CHOICE RESPONSE DATA
INTERPRETATION
Q & A SESSION
PRACTICAL HANDS-ON ACTIVITY
Social Problem-Unemployment .pptx notes for Physiotherapy StudentsDrNidhiAgarwal
Unemployment is a major social problem, by which not only rural population have suffered but also urban population are suffered while they are literate having good qualification.The evil consequences like poverty, frustration, revolution
result in crimes and social disorganization. Therefore, it is
necessary that all efforts be made to have maximum.
employment facilities. The Government of India has already
announced that the question of payment of unemployment
allowance cannot be considered in India
The *nervous system of insects* is a complex network of nerve cells (neurons) and supporting cells that process and transmit information. Here's an overview:
Structure
1. *Brain*: The insect brain is a complex structure that processes sensory information, controls behavior, and integrates information.
2. *Ventral nerve cord*: A chain of ganglia (nerve clusters) that runs along the insect's body, controlling movement and sensory processing.
3. *Peripheral nervous system*: Nerves that connect the central nervous system to sensory organs and muscles.
Functions
1. *Sensory processing*: Insects can detect and respond to various stimuli, such as light, sound, touch, taste, and smell.
2. *Motor control*: The nervous system controls movement, including walking, flying, and feeding.
3. *Behavioral responThe *nervous system of insects* is a complex network of nerve cells (neurons) and supporting cells that process and transmit information. Here's an overview:
Structure
1. *Brain*: The insect brain is a complex structure that processes sensory information, controls behavior, and integrates information.
2. *Ventral nerve cord*: A chain of ganglia (nerve clusters) that runs along the insect's body, controlling movement and sensory processing.
3. *Peripheral nervous system*: Nerves that connect the central nervous system to sensory organs and muscles.
Functions
1. *Sensory processing*: Insects can detect and respond to various stimuli, such as light, sound, touch, taste, and smell.
2. *Motor control*: The nervous system controls movement, including walking, flying, and feeding.
3. *Behavioral responses*: Insects can exhibit complex behaviors, such as mating, foraging, and social interactions.
Characteristics
1. *Decentralized*: Insect nervous systems have some autonomy in different body parts.
2. *Specialized*: Different parts of the nervous system are specialized for specific functions.
3. *Efficient*: Insect nervous systems are highly efficient, allowing for rapid processing and response to stimuli.
The insect nervous system is a remarkable example of evolutionary adaptation, enabling insects to thrive in diverse environments.
The insect nervous system is a remarkable example of evolutionary adaptation, enabling insects to thrive
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingCeline George
The Accounting module in Odoo 17 is a complete tool designed to manage all financial aspects of a business. Odoo offers a comprehensive set of tools for generating financial and tax reports, which are crucial for managing a company's finances and ensuring compliance with tax regulations.
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingCeline George
Ad
PPt on MY SQL basics and its types with examples
2. SQL commands are instructions. It is used to communicate
with the database. It is also used to perform specific tasks,
functions, and queries of data.
SQL can perform various tasks like create a table, add data to
tables, drop the table, modify the table, set permission for
users.
Types of SQL Commands:
There are five types of SQL commands: DDL, DML, DCL, TCL,
and DQL.
4. 1. Data Definition Language (DDL)
DDL changes the structure of the table like creating a table, deleting a
table, altering a table, etc.
All the command of DDL are auto-committed that means it
permanently save all the changes in the database.
Here are some commands that come under DDL:
CREATE
ALTER
DROP
TRUNCATE
5. 2. Data Manipulation Language(DML)
DML commands are used to modify the database. It is responsible
for all form of changes in the database.
The command of DML is not auto-committed that means it can't
permanently save all the changes in the database. They can be
rollback.
Here are some commands that come under DML:
•INSERT
•UPDATE
•DELETE
6. 3. Data Control Language(DCL)
DCL commands are used to grant and take back authority from any
database user.
Here are some commands that come under DCL:
•Grant
•Revoke
4. Transaction Control Language
TCL commands can only use with DML commands like INSERT,
DELETE and UPDATE only.
Here are some commands that come under TCL:
•COMMIT
•ROLLBACK
•SAVEPOINT