Summary of special processing statements of MySQL SQL statements (must read)

Summary of special processing statements of MySQL SQL statements (must read)

1. Update the entire table. If the value of a column in a row of data is empty, make it equal to the value of another column field.

UPDATE ot_tgbz set update_day=if(update_day is null,date,update_day);


2. Update the entire table. If a field is greater than 2, update them all to 2.

UPDATE ot_user set xingyun_num=if(xingyun_num > 2,2,xingyun_num);


3. Replace all the URLs containing https://www.jb51.net/ in the thumb field of the shop_goods table with empty ones.

update shop_goods set thumb= replace (thumb,'https://www.jb51.net/','') where thumb like '%https://www.jb51.net/%';


4. SQL statement multi-field where query

$map="CAST(
  `UE_account` AS CHAR CHARACTER
     SET utf8
  ) LIKE '%$data%'
  OR CAST(
    `UE_accName` AS CHAR CHARACTER
    SET utf8
  ) LIKE '%$data%'
  OR CAST(
    `UE_truename` AS CHAR CHARACTER
    SET utf8
  ) LIKE '%$data%'
  OR CAST(
    `UE_phone` AS CHAR CHARACTER
    SET utf8
  ) LIKE '%$data%'";

The above summary of MySQL's special processing statements in SQL (must read) is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Some common SQL statements in MySQL
  • Super detailed SQL statement syntax summary
  • A brief discussion of 30 common methods for optimizing SQL query in MySQL
  • 10 tips for optimizing MySQL SQL statements
  • MySQL's most basic SQL syntax/statements
  • Summary of MySql Common Operation SQL Statements
  • mysql partial replacement sql statement sharing
  • Mysql primary key related sql statement collection

<<:  Vue project configures webpack-obfuscator to implement code encryption and obfuscation

>>:  How to deploy tomcat in batches with ansible

Recommend

Mysql 8.0 installation and password reset issues

Mysql 8.0 installation problems and password rese...

Vue must learn knowledge points: the use of forEach()

Preface In front-end development, we often encoun...

js to realize login and registration functions

This article example shares the specific code of ...

Vue3 (III) Website Homepage Layout Development

Table of contents 1. Introduction 2. Actual Cases...

How to install Docker using scripts under Linux Centos

What is the main function of Docker? At present, ...

Install Docker on CentOS 7

If you don't have a Linux system, please refe...

Detailed explanation of the flexible use of CSS grid system in projects

Preface CSS grids are usually bundled in various ...

Detailed explanation of MySQL 8.0 password expiration policy

Starting from MySQL 8.0.16, you can set a passwor...

An example of how JavaScript can prevent duplicate network requests

Preface During development, we often encounter va...

Detailed explanation of the use of Refs in React's three major attributes

Table of contents Class Component Functional Comp...

Data URI and MHTML complete solution for all browsers

Data URI Data URI is a scheme defined by RFC 2397...

MySQL date functions and date conversion and formatting functions

MySQL is a free relational database with a huge u...

How to use JS to check if an element is within the viewport

Preface Share two methods to monitor whether an e...