给定下表:
学生
+----+-------+
| id | Name |
+----+-------+
| 1 | Chris |
| 2 | Joe |
| 3 | Jack |
+----+-------+
注册
+---------------+------------+-----------+----------+
| enrollment_id | student_id | course_id | complete |
+---------------+------------+-----------+----------+
| 1 | 1 | 55 | true |
| 2 | 1 | 66 | true |
| 3 | 1 | 77 | true |
| 4 | 2 | 55 | true |
| 5 | 2 | 66 | false |
| 6 | 3 | 55 | false |
| 7 | 3 | 66 | true |
+---------------+------------+-----------+----------+
我想要以下内容
+----+-------+-----------+-----------+-----------+
| id | Name | Course 55 | Course 66 | Course 77 |
+----+-------+-----------+-----------+-----------+
| 1 | Chris | true | true | true |
| 2 | Joe | true | false | NULL |
| 3 | Jack | false | true | NULL |
+----+-------+-----------+-----------+-----------+
注意 1: 我知道 mysql 不能有动态列(如果我错了请纠正我!)所以我对查询开头很满意:
SELECT id, name, course_55, course_66, course_77 etc...
我对此很满意,因为类(class)数量是固定的(准确地说是 4 门)。 理想情况下我希望它是动态的;也就是说,不必在 SELECT 子句中手动编写每门类(class)。
注2:这需要纯mysql——我不想求助于PHP。
数据库目前有 10000 多名学生,注册人数为 10000+ * 4(因为正好有 4 门类(class),每个学生都在所有 4 个模块中)。
注意 3: Student.user_id 已编入索引,enrollment.enrollment_id、enrollment.student_id 和 enrollment.course_id 也已编入索引。
最佳答案
select s.id,s.name,
max(case when e.course_id = 55 then complete else null end) as c55,
max(case when e.course_id = 66 then complete else null end) as c66,
max(case when e.course_id = 77 then complete else null end) as c77
from student as s
left join enrollment as e
on s.id = e.student_id
group by s.id
@克里斯。使用存储过程,您甚至可以在不知道列数的情况下创建动态数据透视表。这是链接
http://forum.html.it/forum/showthread.php?s=&threadid=1456236
我在意大利论坛上对类似问题的回答。有一个完整的示例可以帮助您理解背后的逻辑。 :)
编辑。使用 MYSQL DYNAMIC VIEW 更新
这是我的开始转储:
/*Table structure for table `student` */
drop table if exists `student`;
create table `student` (
`id` int(10) unsigned not null auto_increment,
`name` varchar(50) default null,
primary key (`id`)
) engine=myisam;
/*Data for the table `student` */
insert into `student`(`id`,`name`) values (1,'chris');
insert into `student`(`id`,`name`) values (2,'joe');
insert into `student`(`id`,`name`) values (3,'jack');
drop table if exists enrollment;
create table `enrollment` (
`enrollment_id` int(11) auto_increment primary key,
`student_id` int(11) default null,
`course_id` int(11) default null,
`complete` varchar(50) default null
) engine=myisam auto_increment=8 default charset=latin1;
/*Data for the table `enrollment` */
insert into `enrollment`(`enrollment_id`,`student_id`,`course_id`,`complete`) values (1,1,55,'true');
insert into `enrollment`(`enrollment_id`,`student_id`,`course_id`,`complete`) values (2,1,66,'true');
insert into `enrollment`(`enrollment_id`,`student_id`,`course_id`,`complete`) values (3,1,77,'true');
insert into `enrollment`(`enrollment_id`,`student_id`,`course_id`,`complete`) values (4,2,55,'true');
insert into `enrollment`(`enrollment_id`,`student_id`,`course_id`,`complete`) values (5,2,66,'false');
insert into `enrollment`(`enrollment_id`,`student_id`,`course_id`,`complete`) values (6,3,55,'false');
insert into `enrollment`(`enrollment_id`,`student_id`,`course_id`,`complete`) values (7,3,66,'true');
这是动态 View 的存储过程:
delimiter //
drop procedure if exists dynamic_view//
create procedure dynamic_view()
begin
declare finish int default 0;
declare cid int;
declare str varchar(10000) default "select s.id,s.name,";
declare curs cursor for select course_id from enrollment group by course_id;
declare continue handler for not found set finish = 1;
open curs;
my_loop:loop
fetch curs into cid;
if finish = 1 then
leave my_loop;
end if;
set str = concat(str, "max(case when e.course_id = ",cid," then complete else null end) as course_",cid,",");
end loop;
close curs;
set str = substr(str,1,char_length(str)-1);
set @str = concat(str," from student as s
left join enrollment as e
on s.id = e.student_id
group by s.id");
prepare stmt from @str;
execute stmt;
deallocate prepare stmt;
-- select str;
end;//
delimiter ;
现在让我们调用它
mysql> call dynamic_view();
+----+-------+-----------+-----------+-----------+
| id | name | course_55 | course_66 | course_77 |
+----+-------+-----------+-----------+-----------+
| 1 | chris | true | true | true |
| 2 | joe | true | false | NULL |
| 3 | jack | false | true | NULL |
+----+-------+-----------+-----------+-----------+
3 rows in set (0.00 sec)
Query OK, 0 rows affected (0.05 sec)
现在我们插入另外两条包含两个不同类(class)的记录:
insert into `enrollment`(`student_id`,`course_id`,`complete`) values (1,88,'true');
insert into `enrollment`(`student_id`,`course_id`,`complete`) values (3,99,'true');
我们还记得这个过程。这是结果:
mysql> call dynamic_view();
+----+-------+-----------+-----------+-----------+-----------+-----------+
| id | name | course_55 | course_66 | course_77 | course_88 | course_99 |
+----+-------+-----------+-----------+-----------+-----------+-----------+
| 1 | chris | true | true | true | true | NULL |
| 2 | joe | true | false | NULL | NULL | NULL |
| 3 | jack | false | true | NULL | NULL | true |
+----+-------+-----------+-----------+-----------+-----------+-----------+
3 rows in set (0.00 sec)
Query OK, 0 rows affected (0.02 sec)
就是这样。 :)
关于mysql - 将两个表(具有1-M关系)连接其中第二个表需要 'flattened'到一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5826455/
我正在尝试测试是否存在表单。我是Rails新手。我的new.html.erb_spec.rb文件的内容是:require'spec_helper'describe"messages/new.html.erb"doit"shouldrendertheform"dorender'/messages/new.html.erb'reponse.shouldhave_form_putting_to(@message)with_submit_buttonendendView本身,new.html.erb,有代码:当我运行rspec时,它失败了:1)messages/new.html.erbshou
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t
我想安装一个带有一些身份验证的私有(private)Rubygem服务器。我希望能够使用公共(public)Ubuntu服务器托管内部gem。我读到了http://docs.rubygems.org/read/chapter/18.但是那个没有身份验证-如我所见。然后我读到了https://github.com/cwninja/geminabox.但是当我使用基本身份验证(他们在他们的Wiki中有)时,它会提示从我的服务器获取源。所以。如何制作带有身份验证的私有(private)Rubygem服务器?这是不可能的吗?谢谢。编辑:Geminabox问题。我尝试“捆绑”以安装新的gem..
我在我的项目中添加了一个系统来重置用户密码并通过电子邮件将密码发送给他,以防他忘记密码。昨天它运行良好(当我实现它时)。当我今天尝试启动服务器时,出现以下错误。=>BootingWEBrick=>Rails3.2.1applicationstartingindevelopmentonhttp://0.0.0.0:3000=>Callwith-dtodetach=>Ctrl-CtoshutdownserverExiting/Users/vinayshenoy/.rvm/gems/ruby-1.9.3-p0/gems/actionmailer-3.2.1/lib/action_mailer
exe应该在我打开页面时运行。异步进程需要运行。有什么方法可以在ruby中使用两个参数异步运行exe吗?我已经尝试过ruby命令-system()、exec()但它正在等待过程完成。我需要用参数启动exe,无需等待进程完成是否有任何rubygems会支持我的问题? 最佳答案 您可以使用Process.spawn和Process.wait2:pid=Process.spawn'your.exe','--option'#Later...pid,status=Process.wait2pid您的程序将作为解释器的子进程执行。除
在MRIRuby中我可以这样做:deftransferinternal_server=self.init_serverpid=forkdointernal_server.runend#Maketheserverprocessrunindependently.Process.detach(pid)internal_client=self.init_client#Dootherstuffwithconnectingtointernal_server...internal_client.post('somedata')ensure#KillserverProcess.kill('KILL',
我已经从我的命令行中获得了一切,所以我可以运行rubymyfile并且它可以正常工作。但是当我尝试从sublime中运行它时,我得到了undefinedmethod`require_relative'formain:Object有人知道我的sublime设置中缺少什么吗?我正在使用OSX并安装了rvm。 最佳答案 或者,您可以只使用“require”,它应该可以正常工作。我认为“require_relative”仅适用于ruby1.9+ 关于ruby-主要:Objectwhenrun
我花了三天的时间用头撞墙,试图弄清楚为什么简单的“rake”不能通过我的规范文件。如果您遇到这种情况:任何文件夹路径中都不要有空格!。严重地。事实上,从现在开始,您命名的任何内容都没有空格。这是我的控制台输出:(在/Users/*****/Desktop/LearningRuby/learn_ruby)$rake/Users/*******/Desktop/LearningRuby/learn_ruby/00_hello/hello_spec.rb:116:in`require':cannotloadsuchfile--hello(LoadError) 最佳
我已经像这样安装了一个新的Rails项目:$railsnewsite它执行并到达:bundleinstall但是当它似乎尝试安装依赖项时我得到了这个错误Gem::Ext::BuildError:ERROR:Failedtobuildgemnativeextension./System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/rubyextconf.rbcheckingforlibkern/OSAtomic.h...yescreatingMakefilemake"DESTDIR="cleanmake"DESTDIR="
关闭。这个问题需要detailsorclarity.它目前不接受答案。想改进这个问题吗?通过editingthispost添加细节并澄清问题.关闭8年前。Improvethisquestion在首页我有:汽车:VolvoSaabMercedesAudistatic_pages_spec.rb中的测试代码:it"shouldhavetherightselect"dovisithome_pathit{shouldhave_select('cars',:options=>['volvo','saab','mercedes','audi'])}end响应是rspec./spec/request