Update OperationThe UPDATE-SET statement is used to update any column inside the table. The following SQL query is used to update a column. Consider the following example. ExampleDelete OperationThe DELETE FROM statement is used to delete a specific record from the table. Here, we must impose a condition using WHERE clause otherwise all the records from the table will be removed. The following SQL query is used to delete the employee detail whose id is 110 from the table. Consider the following example. Example |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263638.html