First, you need to determine which fields or field combinations can uniquely identify your row of data. DELETE FROM table name WHERE field1 = '' and field2 = '' and ...field1, ... are the field combinations that can uniquely identify a row of data. Fill in the field you want to The specific value of the deleted field can be If there is a primary key, you can directly use the primary key to identify a row.
Among them: ms_cf01 is the table to which the data you want to delete belongs. brxm, id is the condition for deleting data. The above statement achieves the following effect: delete the row data in table ms_cf01 where brxm is equal to Zhang San and id is equal to 7598. This completes the operation of deleting a row of data. You may also be interested in:
|
<<: Detailed explanation of the loading rules of the require method in node.js
>>: How to set up swap partition SWAP in Linux 7.7
As shown below: from table where condition group ...
MySQL installation tutorial for Windows system do...
Related knowledge points Passing values from pa...
Preface: I have always wanted to know how a SQL s...
I just learned mybatis today and did some simple ...
Table of contents Common array methods pop() unsh...
Preface This article introduces the use of vue-ro...
Table of contents 1. Initialization structure 2. ...
one. Mysql Binlog format introduction Mysql binlo...
Table of contents - Preface - - JVM Class Loader ...
This article shares the specific code of js to ac...
Table of contents Prune regularly Mirror Eviction...
The main contents of this article are as follows:...
Table of contents Overview From Binary Tree to B+...
This article example shares the specific code of ...