What is the difference between SQL, DDL, and DML?
Answer Posted / pavan_1981
sql is a universally accepeted query language whic acts an
interface to the relational databases to fetch,insert and
manipulate the data existing in the database.
sql encompasses of five parts
1.Data Retrieval Language:the commands used to select data
from the database.this includes
a.select
2.Data manipulation Language:commands to manipulate the
data existing in the database.commands in this are
a.insert
b.update
c.delete
d.merge
3.Data Definition Language:commands to define and create
the database ojects like tables ,views etc.commands in this
are
a.create
b.truncate
c.alter
d.drop
e.describe
f.rename
4.Tranaction control Language:the commands in this are
a.grant
b.revoke
5.Data Control Language:the commands in this are
a.Commit
b.Rollback
c.Savepoint.
| Is This Answer Correct ? | 113 Yes | 25 No |
Post New Answer View All Answers
how to handle exceptions in post production
What is the maximum limit on the number of columns in a table?
What are the parameters that we can pass through a stored procedure?
How to convert raw data type into text in oracle? Explain
Explain coalesce function?
How to find out what oracle odbc drivers are installed?
Explain what are the different type of segments?
How do you store pictures in a database?
How to experiment a data lock in oracle?
Explain oracle left join with an example?
various types of hints and their usage
How to use null as conditions in oracle?
How do I recompile a procedure in oracle?
What are internal user account in oracle?
What do you mean by merge in oracle and how can you merge two tables?