你可能想嘗試一些類似如下:
SELECT c.customer_id,
tot_cars.total + tot_parts.total AS total_sales
FROM customer c
JOIN (
SELECT customer_id, SUM(sale_amount) total
FROM sales_cars
GROUP BY customer_id
) tot_cars ON (tot_cars.customer_id = c.customer_id)
JOIN (
SELECT customer_id, SUM(sale_amount) total
FROM sales_parts
GROUP BY customer_id
) tot_parts ON (tot_parts.customer_id = c.customer_id);
結果:
+-------------+-------------+
| customer_id | total_sales |
+-------------+-------------+
| 1 | 64.00 |
| 2 | 128.20 |
| 3 | 90.10 |
+-------------+-------------+
3 rows in set (0.03 sec)
UPDATE:繼下面的評論:
讓我們先從sale_date
領域:
CREATE TABLE sales_cars (
sale_id mediumint(8) unsigned NOT NULL auto_increment,
customer_id mediumint(8) unsigned NOT NULL,
sale_amount decimal(10,2) NOT NULL,
sale_date datetime NOT NULL,
PRIMARY KEY (sale_id)
);
INSERT INTO sales_cars VALUES (1, 3, 14.40, '2010-07-01 12:00:00');
INSERT INTO sales_cars VALUES (2, 1, 28.30, '2010-07-05 12:00:00');
INSERT INTO sales_cars VALUES (3, 2, 34.40, '2010-07-10 12:00:00');
INSERT INTO sales_cars VALUES (4, 2, 25.60, '2010-07-20 12:00:00');
要獲取最新的銷售每個客戶的日期,你可以加入另一個派生表前面描述的查詢,如下:
SELECT c.customer_id,
tot_cars.total + tot_parts.total AS total_sales,
latest_sales.date AS latest_sale
FROM customer c
JOIN (
SELECT customer_id, SUM(sale_amount) total
FROM sales_cars
GROUP BY customer_id
) tot_cars ON (tot_cars.customer_id = c.customer_id)
JOIN (
SELECT customer_id, SUM(sale_amount) total
FROM sales_parts
GROUP BY customer_id
) tot_parts ON (tot_parts.customer_id = c.customer_id)
JOIN (
SELECT customer_id, MAX(sale_date) date
FROM sales_cars
GROUP BY customer_id
) latest_sales ON (latest_sales.customer_id = c.customer_id);
結果:
+-------------+-------------+---------------------+
| customer_id | total_sales | latest_sale |
+-------------+-------------+---------------------+
| 1 | 64.00 | 2010-07-05 12:00:00 |
| 2 | 128.20 | 2010-07-20 12:00:00 |
| 3 | 90.10 | 2010-07-01 12:00:00 |
+-------------+-------------+---------------------+
3 rows in set (0.07 sec)
你看到圖案了嗎?還有其他方法可以解決相同的問題,但與派生表連接是一項非常簡單直接的技術。
那麼對於在customer
表的變化,我假設你的意思是這樣的:
CREATE TABLE customer (
customer_id mediumint(8) unsigned NOT NULL auto_increment,
first_name varchar(50) NOT NULL,
last_name varchar(50) NOT NULL,
gender char(1) NOT NULL,
PRIMARY KEY (customer_id)
);
INSERT INTO customer VALUES (1, 'Joe', 'Doe', 'M');
INSERT INTO customer VALUES (2, 'Jane', 'Smith', 'F');
INSERT INTO customer VALUES (3, 'Peter', 'Brown', 'M');
要連接在MySQL字符串字段,你可以簡單地使用CONCAT()
功能:
SELECT CONCAT(c.first_name, ' ', c.last_name) as full_name
FROM customer c;
返回:
+-------------+
| full_name |
+-------------+
| Jane Smith |
| Peter Brown |
| Joe Doe |
+-------------+
3 rows in set (0.01 sec)
要應用'先生' 或 '女士' 有條件,你就可以使用CASE
聲明:
SELECT (CASE c.gender WHEN 'M' THEN 'Mr' WHEN 'F' THEN 'Ms' END) salutaiton,
CONCAT(c.first_name, ' ', c.last_name) as full_name
FROM customer c;
返回:
+------------+-------------+
| salutaiton | full_name |
+------------+-------------+
| Ms | Jane Smith |
| Mr | Peter Brown |
| Mr | Joe Doe |
+------------+-------------+
3 rows in set (0.01 sec)
您也可以連接兩個字段一起:
SELECT CONCAT((CASE c.gender WHEN 'M' THEN 'Mr' WHEN 'F' THEN 'Ms' END), ' ',
c.first_name, ' ', c.last_name) as full_name
FROM customer c;
返回:
+----------------+
| full_name |
+----------------+
| Ms Jane Smith |
| Mr Peter Brown |
| Mr Joe Doe |
+----------------+
3 rows in set (0.00 sec)
最後,我們可以將這個給我們的主查詢,如下:
SELECT c.customer_id,
CONCAT((CASE c.gender WHEN 'M' THEN 'Mr' WHEN 'F' THEN 'Ms' END), ' ',
c.first_name, ' ', c.last_name) as full_name,
tot_cars.total + tot_parts.total AS total_sales,
latest_sales.date AS latest_sale
FROM customer c
JOIN (
SELECT customer_id, SUM(sale_amount) total
FROM sales_cars
GROUP BY customer_id
) tot_cars ON (tot_cars.customer_id = c.customer_id)
JOIN (
SELECT customer_id, SUM(sale_amount) total
FROM sales_parts
GROUP BY customer_id
) tot_parts ON (tot_parts.customer_id = c.customer_id)
JOIN (
SELECT customer_id, MAX(sale_date) date
FROM sales_cars
GROUP BY customer_id
) latest_sales ON (latest_sales.customer_id = c.customer_id);
返回:
+-------------+----------------+-------------+---------------------+
| customer_id | full_name | total_sales | latest_sale |
+-------------+----------------+-------------+---------------------+
| 1 | Mr Joe Doe | 64.00 | 2010-07-05 12:00:00 |
| 2 | Ms Jane Smith | 128.20 | 2010-07-20 12:00:00 |
| 3 | Mr Peter Brown | 90.10 | 2010-07-01 12:00:00 |
+-------------+----------------+-------------+---------------------+
3 rows in set (0.02 sec)
+1在SQL中包含具有示例信息的結構:) – 2010-07-20 12:12:02