English 中文(简体)
2. 总结数据
原标题:mysql query to summarize data

我正试图总结两个数据来源的一些数据。 表格如下:

t<1>

auto_id unique_column value
1 d1 10
2 d2 5
3 d3 15

Table t2

auto_id unique_column value
null d3 5
null d4 6

查询后图1中的预期数据:

auto_id unique_column value
1 d1 10
2 d2 5
3 d3 20
4 d4 6

为了解决这个问题,我计划做以下工作:

REPLACE INTO t1
SELECT auto_id, unique_column, SUM(value) value FROM 
(
  SELECT * FROM t1
  UNION ALL 
  SELECT * FROM t2
) GROUP BY unique_column; 

Issue with this query

SELECT auto_id, unique_column, SUM(value) value FROM 
(
  SELECT * FROM t1
  UNION ALL 
  SELECT * FROM t2
) GROUP BY unique_column; 

上述问题将给我们带来。

auto_id unique_column value
1 d1 10
2 d2 5
3 d3 20
NULL d4 6

这是一种征兆。 在插头中,我们将得出以下结果:

auto_id unique_column value
1 d1 10
2 d2 5
3 d3 20
4 d4 6

But the following query

SELECT auto_id, unique_column, SUM(value) value FROM 
(
  SELECT * FROM t2
  UNION ALL 
  SELECT * FROM t1
) GROUP BY unique_column; 

让我们

auto_id unique_column value
1 d1 10
2 d2 5
NULL d3 20
NULL d4 6

因此,插入问题将产生以下意外结果:

auto_id unique_column value
1 d1 10
2 d2 5
3 d3 15
4 d3 20
5 d4 6

另一种想法是,full 外加入,但我的sql决定不执行。 可以用我的智慧来替代什么?

最佳回答

阁下:

REPLACE INTO t1
SELECT MAX(auto_id), unique_column, SUM(value) value FROM 
(
  SELECT * FROM t1
  UNION ALL 
  SELECT * FROM t2
) t
GROUP BY unique_column;

d3; d3; d4 case, d3; d4,auto_id,NUL,但(只要该栏被宣布为, ∗ 待印发。

EDIT用于您的编辑:只要您能适当汇总auto_id,即使用(或MIN/code>),则唯一情景是NUL 如果没有事先的<代码>auto_id,则看上去;对订购不敏感。

问题回答

暂无回答




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...