Practical method of deleting a row in a MySql table

Practical method of deleting a row in a MySql table

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.

DELETE FROM table name WHERE primary key = 'specific value'.

delete from ms_cf01 where brxm='张三' and id='7598';

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:
  • MySQL table deletion operation implementation (differences between delete, truncate, and drop)
  • Summary of methods for finding and deleting duplicate data in MySQL tables
  • Cause Analysis and Solution of I/O Error When Deleting MySQL Table
  • Detailed example of creating and deleting tables in MySQL
  • Simple implementation of ignoring foreign key constraints when deleting MySQL tables
  • How to delete a MySQL table

<<:  Detailed explanation of the loading rules of the require method in node.js

>>:  How to set up swap partition SWAP in Linux 7.7

Recommend

Detailed explanation of json file writing format

Table of contents What is JSON Why this technolog...

Detailed explanation on how to modify the default port of nginx

First find out where the configuration file is wh...

How to use linux commands to convert and splice audio formats

Install FFmpeg flac eric@ray:~$ sudo apt install ...

Batch replace part of the data of a field in Mysql (recommended)

Batch replace part of the data of a field in MYSQ...

A simple method to regularly delete expired data records in MySQL

1. After connecting and logging in to MySQL, firs...

WHMCS V7.4.2 Graphical Installation Tutorial

1. Introduction WHMCS provides an all-in-one solu...

Vue achieves seamless carousel effect

This article shares the specific code of Vue to a...

Summary of several principles that should be followed in HTML page output

1. DOCTYPE is indispensable. The browser determin...

...

Windows 2019 Activation Tutorial (Office2019)

A few days ago, I found that the official version...

HTML set as homepage and add to favorites_Powernode Java Academy

How to implement the "Set as homepage" ...

How to export mysql query results to csv

To export MySQL query results to csv , you usuall...

Tomcat Nginx Redis session sharing process diagram

1. Preparation Middleware: Tomcat, Redis, Nginx J...

Convert psd cut image to div+css format

PSD to div css web page cutting example Step 1: F...