我的查询有子查询作为字段列,但我想在其他地方使用此字段列。
SELECT c.country_code AS
country_code,
c.dial_code AS
dial_code,
(SELECT r.destination
FROM region r
WHERE r.country_code = c.country_code
AND r.dial_code = c.dial_code) AS
destination,
c.start_time,
c.duration,
c.call_type,
c.customer_prefix AS
customer_prefix,
c.vendor_prefix AS
vendor_prefix,
(SELECT Round(r.rate, 3)
FROM rate r
INNER JOIN region re
ON r.region_id = re.id
INNER JOIN account_prefix ap
ON r.account_prefix_id = ap.id
WHERE re.country_code = c.country_code
AND re.dial_code = c.dial_code
AND ap.prefix = c.customer_prefix
AND ap.prefix_type = 0) AS
**customer_rate**,
(SELECT Round(r.rate, 3)
FROM rate r
INNER JOIN region re
ON r.region_id = re.id
INNER JOIN account_prefix ap
ON r.account_prefix_id = ap.id
WHERE re.country_code = c.country_code
AND re.dial_code = c.dial_code
AND ap.prefix = c.vendor_prefix
AND ap.prefix_type = 1) AS
**vendor_rate**,
(SELECT Round(r.rate, 3)
FROM rate r
INNER JOIN region re
ON r.region_id = re.id
INNER JOIN account_prefix ap
ON r.account_prefix_id = ap.id
WHERE re.country_code = c.country_code
AND re.dial_code = c.dial_code
AND ap.prefix = c.customer_prefix
AND ap.prefix_type = 0) - (SELECT Round(r.rate, 3)
FROM rate r
INNER JOIN region re
ON r.region_id = re.id
INNER JOIN account_prefix ap
ON r.account_prefix_id
= ap.id
WHERE
re.country_code = c.country_code
AND re.dial_code = c.dial_code
AND ap.prefix = c.vendor_prefix
AND ap.prefix_type = 1) AS **unit_profit**,
unit_profit * duration
FROM cdr c
LIMIT 100;
如您所见,我想使用unit_profit,customer_rate和vendor_rate。怎么实现呢?
编辑:
任何显示加入视图的教程?
答案 0 :(得分:3)
您需要做的是在flied中完成所有子查询,并使用CDR表创建连接。
这将大大提高查询和响应时间的性能。你现在正在做的是为CDR的记录执行3个查询。如果这个表(CDR)只有几个记录是好的,但如果不是这可能会消耗大量的处理器,内存和磁盘I / O.
The trick to do the "join" and show the info in the same format is to join 3 times the same subquery but with a different alias.
select c.country_code, customer_rate_table.customer_rate
from CDR c
left outer join on ( SELECT Round(r.rate, 3) customer_rate , re.country_code,
re.dial_code, re.dial_code, ap.prefix
FROM rate r
INNER JOIN region re
ON r.region_id = re.id
INNER JOIN account_prefix ap
ON r.account_prefix_id = ap.id
WHERE ap.prefix_type = 1
) customer_rate_table
ON customer_rate.country_code = c.country_code
AND customer_rate.dial_code = c.dial_code
AND customer_rate.prefix = c. customer_prefix
left outer join on ( {Same as above but with the right fields} ) vendor_rate_table
ON vendor_rate_table.country_code = c.country_code
AND vendor_rate_table.dial_code = c.dial_code
AND vendor_rate_table.prefix = c.vendor_prefix
然后是下一个表......
此代码不完整,但我认为会解释您需要做什么。
谢谢!
@leo
答案 1 :(得分:1)
相关的子查询就像在查询中一样,在性能方面通常很糟糕。由于您只检索了100行,因此不应该太糟糕,但如果您想要更快,则必须重写查询。
手头的问题可以通过以下方式轻松解决:
SELECT *, unit_profit * duration AS my_calc
FROM (
-- your query here
-- just without "unit_profit * duration"
-- and maybe without redundant column aliases
) AS sub