- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
SQL 爱好者:
我正在尝试通过玩以下用例来挖掘我一些生疏的 sql 技能:
假设我们有一家有线电视公司,并且有跟踪的数据库表:
假设我们想要一份关于每个节目收到的观看次数以及平均年龄的报告观众。我在这里意识到的关键是,如果同一个人在不同日期两次观看节目 X我们不能让这个人的年龄在“X 节目观众的平均年龄”计算中占两倍。
首先我定义我的表并在其中添加一些数据(这是 mysql 语法,b.t.w):
drop table if exists shows ;
create table shows (
showid int not null,
showname varchar(256) not null,
primary key (showid)
);
drop table if exists cust ;
create table cust (
custid int not null,
custname varchar(256) not null,
age int not null,
primary key (custid)
);
drop table if exists watched ;
create table watched (
date int not null,
showid int not null,
custid int not null,
primary key (custid, showid, date)
);
insert into shows values (1, 'bingo');
insert into shows values (2, 'animals');
insert into cust values (1, 'joe', 20);
insert into cust values (2, 'bob', 30);
insert into cust values (3, 'mary', 40);
insert into cust values (4, 'lou', 20);
# date / show / cust
insert into watched values (1, 1, 1);
insert into watched values (1, 1, 2);
insert into watched values (1, 1, 3);
insert into watched values (2, 2, 2);
insert into watched values (2, 1, 1);
insert into watched values (3, 1, 1);
insert into watched values (4, 1, 1);
insert into watched values (1, 1, 4);
现在我创建一个连接表的查询,并为我提供每个客户的节目名称和年龄谁看过节目。
select date, shows.showid, cust.custid, showname, age from
-> watched
-> inner join
-> cust
-> on cust.custid = watched.custid
-> inner join
-> shows
-> on shows.showid = watched.showid ;
+------+--------+--------+----------+-----+
| date | showid | custid | showname | age |
+------+--------+--------+----------+-----+
| 1 | 1 | 1 | bingo | 20 |
| 2 | 1 | 1 | bingo | 20 |
| 3 | 1 | 1 | bingo | 20 |
| 4 | 1 | 1 | bingo | 20 |
| 1 | 1 | 2 | bingo | 30 |
| 1 | 1 | 3 | bingo | 40 |
| 1 | 1 | 4 | bingo | 20 |
| 2 | 2 | 2 | animals | 30 |
+------+--------+--------+----------+-----+
8 rows in set (0.00 sec)
但注意customer id 1作为watcher出现了多次“宾果游戏”节目的成员,我希望他只被数一次。
因此,我创建了一个查询来列出节目和观看过节目的客户,但只对每个客户计数一次。
mysql> select age, showname, showid, custid from
-> ( select date, shows.showid, cust.custid, showname, age from
-> watched
-> inner join
-> cust
-> on cust.custid = watched.custid
-> inner join
-> shows
-> on shows.showid = watched.showid
-> ) as VIEWS
-> group by custid, showname;
+-----+----------+--------+--------+
| age | showname | showid | custid |
+-----+----------+--------+--------+
| 20 | bingo | 1 | 1 |
| 30 | animals | 2 | 2 |
| 30 | bingo | 1 | 2 |
| 40 | bingo | 1 | 3 |
| 20 | bingo | 1 | 4 |
+-----+----------+--------+--------+
5 rows in set (0.00 sec)
下一步——以及(这是我希望您能就此向我提出建议的事情)...我试图创建一个 View ,为我提供所观看的每个节目的名称、观看节目的人的平均年龄以及节目 ID。我计划将其与一个查询结合起来,该查询为我提供了每个节目的观看次数。但是 View 创建失败,如图所示:
mysql> create view viewages as
-> select showname, avg(age), showid
-> from
-> (select age, showname, showid, custid from
-> ( select date, shows.showid, cust.custid, showname, age from
-> watched
-> inner join
-> cust
-> on cust.custid = watched.custid
-> inner join
-> shows
-> on shows.showid = watched.showid
-> ) as VIEWS
-> group by custid, showname)
-> as DISTINCT_CUST_VIEWS
-> group by showname;
ERROR 1349 (HY000): View's SELECT contains a subquery in the FROM clause
好吧..所以那没用。我让它工作了,但我做的方式似乎很俗气。我使用中间表。
有没有 sql rock star 可以告诉我一个更好的方法来做到这一点,没有表..也许有一个观点,就像我试过的那样创造,或者更好的东西。?
这是我蹩脚的解决方案:
drop table if exists viewage ;
create table viewage (
showname varchar(256) not null,
avg_age float not null,
showid int not null
);
insert into viewage
select showname, avg(age), showid
from
(select age, showname, showid, custid from
( select date, shows.showid, cust.custid, showname, age from
watched
inner join
cust
on cust.custid = watched.custid
inner join
shows
on shows.showid = watched.showid
) as VIEWS
group by custid, showname)
as DISTINCT_CUST_VIEWS
group by showname;
## Finally join the table with average age for each show with a query that does the count of views for each show:
drop table if exists viewage ;
create table viewage (
showname varchar(256) not null,
avg_age float not null,
showid int not null
);
insert into viewage
select showname, avg(age), showid
from
(select age, showname, showid, custid from
( select date, shows.showid, cust.custid, showname, age from
watched
inner join
cust
on cust.custid = watched.custid
inner join
shows
on shows.showid = watched.showid
) as VIEWS
group by custid, showname)
as DISTINCT_CUST_VIEWS
group by showname;
select count(*), showname, avg_age from
watched
inner join
viewage
on viewage.showid = watched.showid
group by showname;
+----------+----------+---------+
| count(*) | showname | avg_age |
+----------+----------+---------+
| 1 | animals | 30 |
| 7 | bingo | 27.5 |
+----------+----------+---------+
2 rows in set (0.00 sec)
在此先感谢您的帮助!
-克里斯
最佳答案
I tried to create a view that gives me the name of each show viewed, the average age of those who watched the show, and the show id.
错误信息很清楚-- Subqueries cannot be used in the FROM clause of a view.
这是解决这个特定问题的一种方法。
-- Age of each show's customers.
create or replace view show_cust_ages as
select distinct watched.showid, cust.custid, cust.age
from watched
inner join cust on cust.custid = watched.custid;
-- Average age of show's customers. This queries the previous view.
create or replace view show_avg_ages as
select showid, avg(age) avg_age
from show_cust_ages
group by showid;
-- Your goal.
create or replace view show_name_avg_ages as
select t1.showid, t2.showname, t1.avg_age
from show_avg_ages t1
inner join shows t2 on t2.showid = t1.showid;
在生产中,我会花更多的时间思考事物的名称,而不是在这里。
您应该知道,在 MySQL 中,基于 View 的 View 在大表上可能表现不佳。
关于mysql - 如何使用 View 执行复杂的 sql 查询,而不是依赖中间(具体)表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26902530/
我有三张 table 。表 A 有选项名称(即颜色、尺寸)。表 B 有选项值名称(即蓝色、红色、黑色等)。表C通过将选项名称id和选项名称值id放在一起来建立关系。 我的查询需要显示值和选项的名称,而
在mysql中,如何计算一行中的非空单元格?我只想计算某些列之间的单元格,比如第 3-10 列之间的单元格。不是所有的列...同样,仅在该行中。 最佳答案 如果你想这样做,只能在 sql 中使用名称而
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 7 年前。 Improve this ques
我正在为版本7.6进行Elasticsearch查询 我的查询是这样的: { "query": { "bool": { "should": [ {
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 7 年前。 Improve this ques
是否可以编写一个查询来检查任一子查询(而不是一个子查询)是否正确? SELECT * FROM employees e WHERE NOT EXISTS (
我找到了很多关于我的问题的答案,但问题没有解决 我有表格,有数据,例如: Data 1 Data 2 Data 3
以下查询返回错误: 查询: SELECT Id, FirstName, LastName, OwnerId, PersonEmail FROM Account WHERE lower(PersonEm
以下查询返回错误: 查询: SELECT Id, FirstName, LastName, OwnerId, PersonEmail FROM Account WHERE lower(PersonEm
我从 EditText 中获取了 String 值。以及提交查询的按钮。 String sql=editQuery.getText().toString();// SELECT * FROM empl
我有一个或多或少有效的查询(关于结果),但处理大约需要 45 秒。这对于在 GUI 中呈现数据来说肯定太长了。 所以我的需求是找到一个更快/更高效的查询(几毫秒左右会很好)我的数据表大约有 3000
这是我第一次使用 Stack Overflow,所以我希望我以正确的方式提出这个问题。 我有 2 个 SQL 查询,我正在尝试比较和识别缺失值,尽管我无法将 NULL 字段添加到第二个查询中以识别缺失
什么是动态 SQL 查询?何时需要使用动态 SQL 查询?我使用的是 SQL Server 2005。 最佳答案 这里有几篇文章: Introduction to Dynamic SQL Dynami
include "mysql.php"; $query= "SELECT ID,name,displayname,established,summary,searchlink,im
我有一个查询要“转换”为 mysql。这是查询: select top 5 * from (select id, firstName, lastName, sum(fileSize) as To
通过我的研究,我发现至少从 EF 4.1 开始,EF 查询上的 .ToString() 方法将返回要运行的 SQL。事实上,这对我来说非常有用,使用 Entity Framework 5 和 6。 但
我在构造查询来执行以下操作时遇到问题: 按activity_type_id过滤联系人,仅显示最近事件具有所需activity_type_id或为NULL(无事件)的联系人 表格结构如下: 一个联系人可
如何让我输入数据库的信息在输入数据 5 分钟后自行更新? 假设我有一张 table : +--+--+-----+ |id|ip|count| +--+--+-----+ |
我正在尝试搜索正好是 4 位数字的 ID,我知道我需要使用 LENGTH() 字符串函数,但找不到如何使用它的示例。我正在尝试以下(和其他变体)但它们不起作用。 SELECT max(car_id)
我有一个在 mysql 上运行良好的 sql 查询(查询 + 连接): select sum(pa.price) from user u , purchase pu , pack pa where (
我是一名优秀的程序员,十分优秀!