GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Database  >  SQL

 Print  |  
Question:  Which is the subset of SQL commands used to manipulate Oracle Database structures, including tables?

Answer:

Data Definition Language (DDL)



June 06, 2008 15:14:59 #10
 rabbi08   Member Since: May 2008    Total Comments: 10 

RE: Which is the subset of SQL commands used to manipulate Oracle Database structures, including tables?
 
DDL: Data Definition Language is the subset which is used to manipulate Oracle database structures. i.e. Create, Alter, Drop

DML: Data Manipulation Language is the set used to manipulate the data within the database. i.e. Insert,Delete,Upadate

DCL: Data Control Language is the set used to control access to data in database. i.e. Grant, Revoke
     

 

Back To Question