mysql-merge合并表
merge表 注意:1 每个子表的结构必须一致,主表和子表的结构需要一致,2 每个子表的索引在merge表中都会存在,所以在merge表中不能根据该索引进行唯一性检索。3 子表需要是MyISAM引擎4 AUTO_INCREMENT 不会按照你所期望的方式工作。建表语句create table tab
merge表
注意: 1 每个子表的结构必须一致,主表和子表的结构需要一致, 2 每个子表的索引在merge表中都会存在,所以在merge表中不能根据该索引进行唯一性检索。 3 子表需要是MyISAM引擎 4 AUTO_INCREMENT 不会按照你所期望的方式工作。 建表语句 create table tablename(正常的字段)engine=merge insert_method=last insert_method: 有两个值如下: LAST 如果你执行insert 指令来操作merge表时,插入操作会把数据添加到最后一个子表中。 FIRST 同理,执行插入数据时会把数据添加到第一个子表中。 例子: create table user1( id int(10) not null auto_increment, name varchar(50), sex int(1), primary key(id) )engine=myisam charset=utf8; create table user2( id int(10) not null auto_increment, name varchar(50), sex int(10) ,primary key(id) )engine=myisam charset=utf8; insert into user1 (name,sex) values('张三',0); insert into user2 (name,sex) values('lisi',1); mysql> select * from user1; +----+------+------+ | id | name | sex | +----+------+------+ | 1 | 张三 | 0 | +----+------+------+ mysql> select * from user2; +----+------+------+ | id | name | sex | +----+------+------+ | 1 | lisi | 1 | +----+------+------+ create table alluser( id int(10) not null auto_increment, name varchar(50), sex int(10), index(id) )type=merge union=(user1,user2) insert_method=last; mysql> select * from alluser; +----+------+------+ | id | name | sex | +----+------+------+ | 1 | 张三 | 0 | | 1 | lisi | 1 | +----+------+------+ mysql> insert into alluser(name,sex) values('嘿嘿',0); mysql> select * from user1; +----+------+------+ | id | name | sex | +----+------+------+ | 1 | 张三 | 0 | +----+------+------+ 1 row in set (0.00 sec) mysql> select * from user2; +----+------+------+ | id | name | sex | +----+------+------+ | 1 | lisi | 1 | | 2 | 嘿嘿 | 0 | +----+------+------+ 2 rows in set (0.00 sec) //他把这条数据存入了user2表里是因为我们的insert_method的参数填写的是last mysql> update alluser set sex=replace(sex,0,1) where id=2; +----+------+------+ | id | name | sex | +----+------+------+ | 1 | 张三 | 0 | | 1 | lisi | 1 | | 2 | 嘿嘿 | 1 | +----+------+------+
作者:maildocgaojingru 发表于2013-8-26 17:32:27 原文链接
阅读:53 评论:0 查看评论
原文地址:mysql-merge合并表, 感谢原作者分享。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Taking two arrays as input, try to merge or concatenate the two arrays and store the result in the third array. The logic of merging two arrays is as follows-J=0,k=0for(i=0;i<o;i++){//mergingtwoarrays if(a[j]<=b[k]){ c[i] =a[j]; j++; }else{ &nbs

It is not recommended to merge 2.4g and 5g; because dual-band integration has advantages and disadvantages, it may be difficult for some mobile phones to connect to dual-band WiFi; for general wireless routers, if there is no weak signal rejection function, then the mobile phone after dual-band integration is enabled It may be always connected to the 2.4G frequency band and will not switch to the faster 2.4G frequency band at all unless you manually turn on and off WIFI, so it is recommended to set it up separately.

Overview of advanced functions of how to use HTML, CSS and jQuery to implement image merge display: In web design, image display is an important link, and image merge display is one of the common techniques to improve page loading speed and enhance user experience. This article will introduce how to use HTML, CSS and jQuery to implement advanced functions of image merging and display, and provide specific code examples. 1. HTML layout: First, we need to create a container in HTML to display the merged images. You can use di

In Java development, we often need to combine multiple input streams to process data. The SequenceInputStream function is one of the functions provided in Java for merging input streams. It can merge multiple input streams into a larger input stream to facilitate our data processing. So, how to use the SequenceInputStream function in Java to merge input streams? Next, this article will introduce its specific implementation methods and precautions through detailed steps. I

CSV (Comma Separated Values) files are widely used to store and exchange data in a simple format. In many data processing tasks, there is a need to merge two or more CSV files based on specific columns. Fortunately, this can be easily achieved using the Pandas library in Python. In this article, we will learn how to merge two CSV files by specific columns using Pandas in Python. What is the Pandas library? Pandas is an open source library for information control and inspection in Python. It provides tools for working with structured data (such as tabular, time series, and multidimensional data) and high-performance data structures. Pandas is widely used in finance, data science, machine learning, and other fields that require data manipulation.

Get started quickly: JSON array merging and splitting techniques in Java In modern software development, data format and transmission have become increasingly important. Among them, JSON (JavaScriptObjectNotation) is a commonly used data format, especially suitable for front-end and back-end interaction and data storage. In Java development, we often need to deal with JSON objects and JSON arrays. This article explains how to merge and split JSON arrays in Java, along with tips and examples for implementing these operations.

Detailed explanation of the role of .ibd files in MySQL and related precautions MySQL is a popular relational database management system, and the data in the database is stored in different files. Among them, the .ibd file is a data file in the InnoDB storage engine, used to store data and indexes in tables. This article will provide a detailed analysis of the role of the .ibd file in MySQL and provide relevant code examples to help readers better understand. 1. The role of .ibd files: storing data: .ibd files are InnoDB storage

How to use PHPZipArchive to merge and split multiple compressed packages? Overview: During the development process, sometimes we need to merge multiple compressed packages into one, or split a compressed package into multiple ones. PHP provides the ZipArchive extension to easily complete these operations. This article will introduce how to use PHPZipArchive to merge and split multiple compressed packages. Merging multiple archives First, we need to create a new archive and open it. Then, the loop traversal needs to be
