0
votes
2answers
15 views

Merge and replace table id with name

table employee: +----+------------+ | id | firstname | +----+------------+ | 1 | name1 | +----+------------+ table orders: +----+--------+ | id | eid | +----+--------+ | 1 | 2 | ...
1
vote
1answer
31 views

Merge and replace table id with name of two table SQL

table customers: +----+------------+ | id | text | +----+------------+ | 33 | name1 | | 34 | name2 | | 35 | name3 | | 36 | name4 | +----+------------+ table orders: ...
1
vote
3answers
49 views

Boolean operations on mysql results

I have 3 Mysql tables: [block_value] id_block_value file_id [metadata] id_metadata metadata_name [metadata_value] meta_id value blockvalue_id In these tables, there are pairs: ...
0
votes
1answer
29 views

Mysql merge 1 table into a 2nd and count columns together [closed]

TABLE1 | ID | NAME | MONEY | POINTS | | 1 | Tim | 200 | 1 | | 2 | Arne | 500 | 2 | | 3 | Lies | 600 | 3 | ...
0
votes
1answer
114 views

SQL Server : if record found update else insert, merge query error correction

I have come up with following query for SQL Server for updating a row if found else insert merge tblpermissions as t using (select cid, uid from tblpermissions) as s on (t.cid = s.cid and ...
0
votes
1answer
38 views

How to merge two tables keeping rows from first table

I have following two tables: table1(a,b,c,d) table2(a,b,c,d) My requirement is to merge the two tables; if there are row(s) for combination of columns a and b (only combination of columns a and b, ...
0
votes
0answers
20 views

Merge Specific Rows while marking others (Design + SQL)

the question is phrased a little bit cryptically so feel free to change it if needed. I have a database table with names and ids like so +------------+------------+------------+ | Id | ...
0
votes
2answers
47 views

MySQL: Merge rows and returning default values

Imagine the following table: id | variant | name ----------------------- 1 | 1 | a 1 | 2 | b 1 | 3 | c 2 | 1 | d 2 | 2 | e 2 | 3 | NULL 3 | 1 | g ...
1
vote
2answers
55 views

MySQL - combining two records, different fields from each record

I am updating an existing database to simplify it and extend its functionality. I have a table as follows: ID Parent increment info 1 info 2 1 103 0 25 1 2 103 ...
1
vote
0answers
31 views

How do I join / merge / union two compressed MySQL MyISAM tables?

I have a large compressed MyISAM table that I am adding data to every month or so. Up until now the size of the tables have been manageable, but it's pretty tiresome to uncompress-insert-compress each ...
3
votes
3answers
40 views

Merging multiple PHP arrays

My problem is this: I'm creating an Array in order to store these 2 types of 'refinement'. However, what is happening is as the information is collected from the database, each 'refinement' is ...
0
votes
0answers
28 views

How to add vertices to existing linestrings in mysql?

Is it possible to add a Point at the end of a Linestring in MySql? For example I have a Linestring as Linestring(1 2, 1 4, 1 6) and I want to add a Point Point(1 7) at the end (output should be ...
0
votes
1answer
117 views

PhpMyAdmin Merging two tables

I have Table one and table two. table one has columns zoe and clo, but table two has oez and olc and it goes like this zoe=oez and cloe=olc how can i merge them? :D
0
votes
1answer
31 views

MySQL, Select, Merge tables

I have a little problem that I can´t solve. It´s really simple, but I just can´t figure it out and have search some time but not found any good answers. I have two tables: Transaction t_nr ...
1
vote
1answer
46 views

Merge mysql colums to rows

I have a table with the following structure: +-----+------------+------------+------------+------------+ | ID | FEATURE1 | FEATURE2 | FEATURE3 | FEATURE4 | ...
0
votes
3answers
122 views

merge two arrays with numeric keys for values of associative array to insert in MySQL in multiple rows

I'm getting two arrays $post_img & $post_sort resulting: Array ( [0] => test1.jpg [1] => test2.jpg [2] => test3.jpg ) Array ( [0] => 3 [1] => 1 [2] => 2 ...
0
votes
1answer
44 views

Managing MySQL Database Table Development/Production Cycle

I would like to know what is the best practice to manage data of a website's MySQL table given the data is added to the table, both, on the live website and in parallel in the development phase, plus, ...
0
votes
3answers
48 views

How to update in SQL to get distinct tuples / not to violate a unique constraint

I have a mapping table with a unique contraint on the tuple (c_id, t_id). Here's some sample data to illustrate the situation: id c_id t_id ---------------- 1 10 2 2 10 3 3 ...
0
votes
2answers
53 views

select all distinct values from a merge of multiple fields MySql

assuming I have a table like this: A B C 10 aname avalue 11 aname bvalue 11 aname bvalue 10 bname avalue 11 cname bvalue of this set i would like to select ...
0
votes
1answer
59 views

mysqldump merge for rows

I am using mysqldump for replicating one table to other server. Everytime I start the process, mysqldump brings all inserts of data in table. For example, let's say I have 1 record in the table and I ...
0
votes
1answer
40 views

How to create a merge table from a partitioned table and a unpartitioned table

I have a partitioned table and an unpartitioned table in a mysql table. I will like to create a union merge table for the two tables. The problem is, after creating the merge table, I get this error ...
0
votes
1answer
216 views

MySQL database merge of two databases

I set up two Wordpress blogs a while ago, both obviously having different databases. I've more recently merged these databases into one by changing the tables prefixes, therefore these two 'entities' ...
0
votes
0answers
28 views

Using MERGE tables in MySQL for single tables

I've just recently learned about the MERGE storage engine in MySQL but is it ok to use MERGE which has only a single table? It's my understanding that by using merge I can easily expand my tables by ...
1
vote
2answers
426 views

MYSQL PHP Combine Multiple Rows into One Based on a Duplicate Column

I have an email list that has a lot of duplicate data in it and I want to merge rows that have duplicate data in a certain column.. Here is the table that I have: ...
0
votes
0answers
25 views

Performance While merging two mysql DBs

I have two similar schema DBs which I need to merge. I was thinking about the performance issues which I need to keep in mind while creating the script. These are the ones which I can think of. ...
1
vote
1answer
71 views

MySQL Merged table duplicates

Here is what I currently have: Archive tables (one for each year, 2008-2011) and 4 newly created tables for 2012 broken into quarters. All of these tables, including the new one, have the same ...
0
votes
2answers
86 views

Combine Rows for Json Encode

I am having trouble merging data before outputting json. The goal is to have each object in the json to contain all the data for each 'post'. The below code: $results = mysql_query("SELECT ...
0
votes
0answers
81 views

Merge Two or More Database in MySQL

I have many tables in a database and I want to merge it all. I have this code in reading 1 database Dim mData As DataTable = MyDB.ExecCommand("SELECT `Orig Document Begin ID` ...
2
votes
2answers
85 views

Merging two/three records in rails

I want to merge two profiles into the one. What is the best way to do this in rails. I have two profiles say User1 and User2 and there are at least 30 tables associated with them. Now i want to ...
2
votes
1answer
80 views

mysql how to merge /join/complete information from 1 rows to other row from the same table

I have a table like this ID | starttime | endtime |manualid 1 | 12:24:00 | 13:25:00 |null 2 | null | null |1 3 | null | null |5 4 | 16:34:00 | 19:25:00 |null 5 | ...
8
votes
2answers
108 views

mysql true row merge… not just a union

What is the mysql I need to achieve the result below given these 2 tables: table1: +----+-------+ | id | name | +----+-------+ | 1 | alan | | 2 | bob | | 3 | dave | +----+-------+ ...
3
votes
2answers
87 views

How to merge two MySQL tables

region table view state region EB1 TamilNadu Chennai-North EB2 AndhraPradesh Guntur country table view code country state EB1 +91 India TamilNadu EB2 ...
0
votes
1answer
147 views

mysqldump merge instead of overwrite

I have a dev server with a copy of a database which can be edited and a live real server with that same database in a different state. To move the database from the dev to the live I run from the dev ...
0
votes
1answer
113 views

Sphinx Error: failed to merge index

While merging index with delta on Sphinx, I got this error: ~: /usr/local/bin/indexer --merge myindex myindexDelta --rotate; Sphinx 2.0.6-release (r3473) Copyright (c) 2001-2012, Andrew Aksyonoff ...
0
votes
2answers
69 views

Appending one array to another array in the same loop

This is for a custom Wordpress page but I think the basic array principles should apply. I've not worked with complex arrays before so am a little lost, trial and error hasn't worked yet. I have a ...
0
votes
1answer
137 views

Git-like MySQL dumps merge?

I'm new to Git or anything about version control. Here's our setup: As a developer I have a local installation of Wordpress which is a clone from our master branch in github called master. Each time I ...
1
vote
2answers
51 views

Merge MySQL columns exclude duplicates

I have these two tables: desc students +-----------------------+---------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | ...
1
vote
1answer
60 views

Add record to table only if data has changed since last record by date

I need help trying to find a efficient method of adding data into a table only if the data has changed. I have the first table which is LatestResults and only stores the latest results ( 1 for each ...
2
votes
2answers
36 views

Merging Corresponding MySQL Records

I have a MySQL table called "objecttable" that has the following structure and data in it. (The data is just a sequence, there is a whole lot more). ID | Name | posX | posY | ...
2
votes
2answers
71 views

adding an additional item in SQL statement causes slow performance

I have a sql statement that looks like this: SELECT colID FROM tableName WHERE ColDateStart <='$lowerDate' AND ColDateStart>='$upperDate' AND ColVcamID='$id1' AND ColVlviID='$id2' AND ...
1
vote
2answers
122 views

merge two mysql tables into a third table

I have two mysql tables: table 1: id name type 1 a 123 2 b 125 table 2: id text 1 test1 2 test2 these two tables need to be merged into a third ...
1
vote
2answers
248 views

Joining 6 mysql tables into one to echo the result into an html table with php

The purpose of the database I'm using a mysql database with an apache server to store homeschool information. I'm trying to track each assignment similiar to a grade book where I can query by ...
3
votes
4answers
170 views

Merging these two queries

I was listing this two queriess as separate, but now I need the results in the same list. Right now I have it 'fixed' by ordering the items by id using javascript. But it would be great to get this ...
0
votes
2answers
90 views

MySQL: Merge tables, run SELECT and update duplicates

I've the following three tables: Table A: id VARCHAR(32) | value VARCHAR(32) | groupId INT abcdef | myValue1 | 1 ghijkl | myValue2 | 2 mnopqr | myValue3 ...
0
votes
0answers
65 views

Optimization of merging huge tables in MySQL

I have a huge indexed MySQL table (~300-400 GB) that I need to append with new entries from time to time (where the new data takes ~10-20 GB). The raw file with new data may contain mistakes, that ...
1
vote
1answer
162 views

I need the MySQL query for merging Two databases

I have tried it a couple of different ways but nothing is working. I am a total newbie at this but need to merge a new MySQL wordpress database into an old one. I am entering this into "Run SQL ...
0
votes
1answer
240 views

attach/merge pdfs from mysql blob/POST upload [duplicate]

Possible Duplicate: Merge PDF files with PHP I need help merging/attaching pdf files, that are uploaded by a user using a normal html form and POST upload processing via php. The file(s) ...
1
vote
1answer
68 views

Is it possible to merge dumps from two MySQL servers?

I have two mysql servers, both of which are masters. After some problems with their local network they lost connection with each other but continued working some time, without any synchronization. ...
0
votes
0answers
85 views

Complex mysql row merge with innodb database

This is a follow up to this post. Please read that first. I've got a complex situation on my hands, and I'm not sure how to deal with it. Basically, I have three tables that I need to merge data ...
0
votes
2answers
54 views

How can I merge 2 rows in an innodb table

I've taken over the development of a web app that uses a mysql innodb database. The client has a lot of duplicate records in the db on accident. I'm building a merge tool to keep one record and push ...

1 2 3 4