16.7k views
2 votes
.To remove data from a table we use the DELETE verb? (true/false)

User Adek
by
5.7k points

1 Answer

2 votes

Answer:

The correct answer for the given question is "true".

Step-by-step explanation:

Yes delete is a verb in a database table because it perform the action it means it will delete the data or record from a database table .The SQL query of delete is

Delete from tablename ;

For example :delete name from student;

In this query name will deleted from student table this action will be performed by delete query so we conclude that delete is a verb.

User Zidane
by
5.5k points