answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Which sql sublanguage is used to modify data in database?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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.


What is a query used for on a database?

A query is used to retrieve specific information or data from a database based on specific criteria. It allows users to search, filter, and retrieve data that meets their requirements. Queries can also be used to update or modify existing data in the database.


What is the select element?

To retrieve or modify data in the database query are used. There are four types of commands in SQL. Select command is data retrieval language command and is used to retrieve data from a database.In database there Four types of languages which contains various commands. Select command is the only command that is used for retrieval of data.


Which sql statement is used to update data from a database?

The SQL statement used to update data in a database is the UPDATE statement. It allows you to modify existing records in a table by specifying the columns and values to be updated based on certain conditions.


What can you do with query by example?

A database query is similar to a command that can be used to perform a specific function on a database table. Some common types of queries are:INSERT - Used to insert data into a tableUPDATE - Modify data that is already existing in a tableDELETE - Delete data from a tableSELECT - To fetch and display data from a table


What provides the ability to query information from the database and to insert tuples into delete tuples from and modify tuples in the database?

SQL (Structured Query Language) provides the ability to query, insert, delete, and modify data in a database. It is a standard language used for managing and manipulating relational databases. By using SQL commands, users can interact with the database to retrieve, add, change, or remove data as needed.


What is mean by dynamics?

A query is an SQL statement that is used to retrieve or modify data from database. A query that works dynamically is called dynamic query.


What is dynamic mean?

A query is an SQL statement that is used to retrieve or modify data from database. A query that works dynamically is called dynamic query.


Which SQL statement is used to update data in a database?

The SQL statement used to update data in a database is the "UPDATE" statement. It allows you to modify existing records in a table by specifying the column and value you want to update based on certain conditions. Additionally, you can use the "SET" keyword to assign new values to specific columns in the table.


What is mean by dynamic query?

A query is an SQL statement that is used to retrieve or modify data from database. A query that works dynamically is called dynamic query.


What is ddl dml tcl dql dcl?

DDL statements -Data Definition Language It is used to Retrive,Store,Modify,Delete,Insert,update data in database. 1) Create 2) Alter 3) Drop DML Statements.-Data Manipulation Languag It is used to create and modify the structure of database objects in database. 1) Insert 2) Update 3) Delete 4) select DCL statements-Data Control Language It is used to create roles, permissions, and referential integrity as well it is used to control access to database by securing it. 1) GRANT 2) REVOKE TCL-Transactional Control Language It is used to manage different transactions occurring within a database. 1) COMMIT 2) ROLLBACK 3) Save point DQL-Data Query Language basicallu used for select data from table... 1) SELECT