answersLogoWhite

0


Best Answer

There are three parts of structure query language (sql) .

1.dml

2.ddl

3.dcl

1. In data manipulation language (dml) we can insert,update and delete a record.

2.in data definition language (ddl) we can change the structure of data like alter a table,create object ,drop and rename an object.

3.data control language (dcl) we can use security rights like grant ,revoke .

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the parts of SQL language in dbms?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are dbms languages?

DBMS is Database management system . The DBMS language are those that are used to store and maintain the data in the database. Example PL/SQL.


Is SQL DBMS or RDBMS?

dbms


What is relation between sql and dbms?

SQL (Structured Query Language) is a programming language used to communicate with relational database management systems (RDBMS). DBMS (Database Management System) is a software system that allows users to create, maintain, and control databases. Essentially, SQL is the language used to interact with and perform operations on databases managed by DBMS.


Examples for dbms and rdbms?

My sql, Microsoft sql , Microsoft Access, dBase, Filemaker pro are the examples for dbms and oracle and sql server are the examples for rdbms


List some dbms and rdms software?

The name of few DBMS are FOXPRO, MS-ACCESS, SQL Server, My SQL, ORACLE, etc.


What are the differences between a sql server dba and a sql dba?

The term SQL alone implies Structured Query Language as per the ANSI standard. Every Database Management System (DBMS) has its own "software" that makes it work. That being said, the term "SQL DBA" alone does not make any sense without mentioning the vendor specific DBMS you are managing. So, an SQL Server DBA is an administrator of Microsoft's SQL Server.


What are the differences between sql and mysql?

SQL is short for Structured Query Language, and MySQL is a database management system, like SQL Server 2005, Oracle.An example would be other programming languages like BASIC and QBASIC where BASIC is the generic term for the BASIC programming language and QBASIC is Microsoft's version (quick BASIC) and TURBO BASIC was Borlands version.oracle supports the user defined datatypes,where as mysql not support all these types of datatypes, like user defined , and cursors like these stuff;;


What is data sub language?

A data Sublanguage is a computer language used to define or manipulate the structure of a relational database management system(DBMS) e.g QBE, SQL.


What is data sub-language?

A data Sublanguage is a computer language used to define or manipulate the structure of a relational database management system(DBMS) e.g QBE, SQL.


Can be executed sql statements without a dbms?

yes


Is Dbms a language or system?

Database Management Systems (Abbr as DBMS) is a system which manages your database. In general, it is a set of software programs to create, store and maintain your data in a database. These software programs are provided by more than single vendor. For example: Oracle SQL IBM DB2 and MS Mysql


How can a complexity of a dbms be a disadvantages?

Developing a database application means converting your data into types understood by the DBMS, generating SQL code, sending it to the DBMS for evaluation, retrieving the result, and converting the result into types understood by your application language. It's even more strange when you use parameterized SQL: you generate some code with placeholders instead of literals, and then you send the literals separately (by "more strange," I certainly don't mean "worse," - parameterized SQL is a huge improvement).