All about DATA

A. DATA DEFINITION LANGUAGE

Data Definition Language (DDL) is a subset of SQL used to define and manage the structure of database objects, such as tables, indexes, and schemas, including creating, altering, and deleting these objects.



B. INTERACTIVE DATA MANIPULATION LANGUAGE

Interactive Data Manipulation Language (IDML) is a part of SQL that lets you interact with and manage the data in a database. It includes commands that allow you to retrieve data, add new data, change existing data, and remove data. The SELECT command is used to get data from the database, like asking the database a question and getting an answer back. The INSERT command adds new data into the database, similar to putting new information into a file. The UPDATE command changes existing data in the database, like editing a file to update some information. The DELETE command removes data from the database, similar to erasing information you no longer need. In essence, IDML is all about how you can work with the information stored in a database.


C. EMBEDDED DATA MANIPULATION LANGUAGE

Embedded Data Manipulation Language (EDML) allows SQL statements to be included directly within programming code (like C, Java, or Python) to interact with databases. It simplifies communication between programs and databases by integrating SQL commands directly into the code, enabling seamless management and manipulation of data.





 

Comments

Popular posts from this blog

Introducing SQL

Components of database