oracle中如何把纵向数据以横向方式展现,谢谢指点
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle中如何把纵向数据以横向方式展现,谢谢指点相关的知识,希望对你有一定的参考价值。
请教下,如何把纵向数据以横向方式展现。编号 姓名 科目 成绩
1 张三 语文 85
1 张三 数学 92
1 张三 英语 78
2 李四 语文 91
2 李四 数学 85
2 李四 英语 84
我先得到这个效果
编号 姓名 语文 数学 英语
1 张三 85 92 78
2 李四 91 85 84
谢谢指点
SUM(CASE WHEN 科目='数学' THEN 成绩 END) 数学,
SUM(CASE WHEN 科目='英语' THEN 成绩 END) 英语
from 表 GROUP BY 编号,姓名
如何以编程方式创建表视图?
【中文标题】如何以编程方式创建表视图?【英文标题】:How to create a table view programmatically? 【发布时间】:2011-05-11 05:25:56 【问题描述】:我需要在我的应用程序中使用 UITable View,它必须支持横向和纵向。
如果我直接从界面生成器中拖动 UItableview,那么我该如何准确控制它
如果不是,那么建议我以编程方式执行相同的操作。
谢谢 里兹万
【问题讨论】:
尝试接受你之前的回答 【参考方案1】: - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
return 1;//Returns the no of sections in the tableview
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
return 5;//Returns the no of rows in the tableview
//This method is called everytime when a row is created.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
// Configure the cell...
cell.textLabel.text =@"tableview";
return cell;
【讨论】:
以上是关于oracle中如何把纵向数据以横向方式展现,谢谢指点的主要内容,如果未能解决你的问题,请参考以下文章