Home Database Mysql Tutorial mysql小技巧

mysql小技巧

Jun 07, 2016 pm 03:01 PM
insert mysql Skill grammar

INSERT语法 INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [ IGNORE ] [INTO] tbl_name [( col_name ,...)] VALUES ({ expr | DEFAULT},...),(...),... [ ON DUPLICATE KEY UPDATE col_name = expr , ... ] 或: INSERT [LOW_PRIORITY | DELAYED | HIGH_

INSERT语法

<font>INSERT [LOW_PRIORITY | <strong><font>DELAYED</font></strong> | HIGH_PRIORITY] [<strong><font>IGNORE</font></strong>]</font>
Copy after login
Copy after login
<font>      [INTO] <em>tbl_name</em> [(<em>col_name</em>,...)]</font>
Copy after login
Copy after login
<font>      VALUES ({<em>expr</em> | DEFAULT},...),(...),...</font>
Copy after login
<font>      [ <font>ON DUPLICATE KEY UPDATE</font> <span><em>col_name</em></span>=<em>expr</em>, ... ]</font>
Copy after login

或:

<font>INSERT [LOW_PRIORITY | <strong><font>DELAYED</font></strong> | HIGH_PRIORITY] [<strong><font>IGNORE</font></strong>]</font>
Copy after login
Copy after login
<font>      [INTO] <em>tbl_name</em></font>
Copy after login
<font>      SET <em>col_name</em>={<em>expr</em> | DEFAULT}, ...</font>
Copy after login
<span><font>      [ <font>ON DUPLICATE KEY UPDATE</font> <em>col_name</em>=<em>expr</em>, ... ]</font></span>
Copy after login
Copy after login

或:

<font>INSERT [LOW_PRIORITY | HIGH_PRIORITY] [<strong><font>IGNORE</font></strong>]</font>
Copy after login
<font>      [INTO] <em>tbl_name</em> [(<em>col_name</em>,...)]</font>
Copy after login
Copy after login
<font>      SELECT ...</font>
Copy after login
<span><font>      [ <font>ON DUPLICATE KEY UPDATE</font> <em>col_name</em>=<em>expr</em>, ... ]</font></span>
Copy after login
Copy after login
Copy after login
一、<strong><font>DELAYED</font></strong>的使用
Copy after login
    使用延迟插入操作
Copy after login
DELAYED调节符应用于INSERT和REPLACE语句。当DELAYED插入操作到达的时候,<br>
服务器把数据行放入一个队列中,并立即给客户端返回一个状态信息,这样客户<br>
端就可以在数据表被真正地插入记录之前继续进行操作了。如果读取者从该数据<br>
表中读取数据,队列中的数据就会被保持着,直到没有读取者为止。接着服务器<br>
开始插入延迟数据行(delayed-row)队列中的数据行。在插入操作的同时,服务器<br>
还要检查是否有新的读取请求到达和等待。如果有,延迟数据行队列就被挂起,<br>
允许读取者继续操作。当没有读取者的时候,服务器再次开始插入延迟的数据行。<br>
这个过程一直进行,直到队列空了为止。
Copy after login
几点要注意事项:<br>
· INSERT DELAYED应该仅用于指定值清单的INSERT语句。服务器忽略用于INSERT DELAYED...SELECT语句的DELAYED。<br>
· 服务器忽略用于INSERT DELAYED...ON DUPLICATE UPDATE语句的DELAYED。<br>
· 因为在行被插入前,语句立刻返回,所以您不能使用LAST_INSERT_ID()来获取AUTO_INCREMENT值。AUTO_INCREMENT值可能由语句生成。<br>
· 对于SELECT语句,DELAYED行不可见,直到这些行确实被插入了为止。<br>
· DELAYED在从属复制服务器中被忽略了,因为DELAYED不会在从属服务器中产生与主服务器不一样的数据。
Copy after login
<span>注意,目前在队列中的各行只保存在存储器中,直到它们被插入到表中为止。这意味着,如果您强行中止了mysqld(例如,使用kill -9)<br>
或者如果mysqld意外停止,则所有没有被写入磁盘的行都会丢失。</span>
Copy after login
二、<font><strong>IGNORE</strong></font>的使用
Copy after login
IGNORE是<u><strong>MySQL</strong></u>相对于标准SQL的扩展。如果在新表中有重复关键字,<br>
或者当STRICT模式启动后出现警告,则使用IGNORE控制ALTER TABLE的运行。<br>
如果没有指定IGNORE,当重复关键字错误发生时,复制操作被放弃,返回前一步骤。<br>
如果指定了IGNORE,则对于有重复关键字的行,只使用第一行,其它有冲突的行被删除。<br>
并且,对错误值进行修正,使之尽量接近正确值。
Copy after login
insert ignore into tb(...) value(...)
Copy after login
这样不用校验是否存在了,有则忽略,无则添加<br>
<br>
三、<font>ON DUPLICATE KEY UPDATE</font>的使用
Copy after login
<p>如果您指定了ON DUPLICATE KEY UPDATE,并且插入行后会导致在一个UNIQUE索引或<span>PRIMARY KEY</span>中出现重复值,则执行旧行UPDATE。例如,如果列a被定义为UNIQUE,并且包含值1,则以下两个语句具有相同的效果:</p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">mysql> <strong>INSERT INTO table (a,b,c) VALUES (1,2,3)</strong>
Copy after login
Copy after login
      -> <span><strong>ON DUPLICATE KEY UPDATE c=c+1;</strong></span>
Copy after login
 
Copy after login
mysql> <strong>UPDATE table SET c=c+1 WHERE a=1;</strong>
Copy after login

如果行作为新记录被插入,则受影响行的值为1;如果原有的记录被更新,则受影响行的值为2。

注释:如果列b也是唯一列,则INSERT与此UPDATE语句相当:

mysql> <strong>UPDATE table SET c=c+1 WHERE a=1 OR b=2 LIMIT 1;</strong>
Copy after login

如果a=1 OR b=2与多个行向匹配,则只有一个行被更新。通常,您应该尽量避免对带有多个唯一关键字的表使用ON DUPLICATE KEY子句。

您可以在UPDATE子句中使用VALUES(col_name)函数从INSERT...UPDATE语句的INSERT部分引用列值。换句话说,如果没有发生重复关键字冲突,则UPDATE子句中的VALUES(col_name)可以引用被插入的col_name的值。本函数特别适用于多行插入。VALUES()函数只在INSERT...UPDATE语句中有意义,其它时候会返回NULL

示例:

mysql> <strong>INSERT INTO table (a,b,c) VALUES (1,2,3),(4,5,6)</strong>
Copy after login
      -> <strong>ON DUPLICATE KEY UPDATE c=VALUES(a)+VALUES(b);</strong>
Copy after login

本语句与以下两个语句作用相同:

mysql> <strong>INSERT INTO table (a,b,c) VALUES (1,2,3)</strong>
Copy after login
      -> <span><strong>ON DUPLICATE KEY UPDATE c=3;</strong></span>
Copy after login
mysql> <strong>INSERT INTO table (a,b,c) VALUES (4,5,6)</strong>
Copy after login
      -> <strong>ON DUPLICATE KEY UPDATE c=9;</strong>
Copy after login

当您使用ON DUPLICATE KEY UPDATE时,DELAYED选项被忽略。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP's big data structure processing skills PHP's big data structure processing skills May 08, 2024 am 10:24 AM

Big data structure processing skills: Chunking: Break down the data set and process it in chunks to reduce memory consumption. Generator: Generate data items one by one without loading the entire data set, suitable for unlimited data sets. Streaming: Read files or query results line by line, suitable for large files or remote data. External storage: For very large data sets, store the data in a database or NoSQL.

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the &quot;MySQL Native Password&quot; plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

The difference between oracle database and mysql The difference between oracle database and mysql May 10, 2024 am 01:54 AM

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.

See all articles