Computer Science, asked by divyanshi6674, 1 year ago

Manipulation operation can be done on a table

Answers

Answered by mohit100dhi
77
yes manipulation can be done on a table by using query for example joining of the table and use the key to provide authorization to the table for exampl primary key and foriegn key.
Answered by skyfall63
20

Answer:

Yes, we can done manipulation operation on the table.

Explanation:

A “Data manipulation language (DML)” is also called as a computer programming language, it is used to manipulate the data. The manipulation operations involves like to SELECT, INSERT, DELETE and UPDATE the data into the SQL database.

SELECT - We can select one or more data from the table.

Syntax:  Select column1 from table_name

INSERT - We can insert one or more values into the table by using insert command.

Syntax: Insert into table_name (column1, column2) values (value1, value2)

DELETE - We can delete one or more data with the specify condition from the table.

Syntax: Delete from table_name where condition;

UPDATE - We can update the data table values by using update command.

Syntax: Update table_ name  Set column = value Where specific _condition;

Similar questions