Tagged Questions

A cross tab, also known as a "pivot table", is a method of summarizing data in tabular form.   Typically, these have a category column in the left hand side, and multiple summary columns to the right. Each different category will have its own row.

learn more… | top users | synonyms

8
votes
4answers
9k views

MYSQL - Rows to Columns

I tried to search posts, but I only found solutions for SQL Server/Access. I need a solution to MYSQL (5.X). I have a table (called history) with 3 columns: hostid, itemname, itemvalue. If I do a ...
7
votes
6answers
12k views

Transpose a set of rows as columns in SQL Server 2000

Is there any facility of transposing rows to columns in SQL Server (it is possible in MS-Access)? I was befuddled because this facility is available in MS-Access but not in SQL Server. Is it by ...
5
votes
3answers
2k views

PostgreSQL Crosstab Query

Does any one know how to create crosstab queries in PostgreSQL? For example I have the following table: Section Status Count A Active 1 A Inactive 2 B Active ...
5
votes
5answers
478 views

What's a good data model for cross-tabulation?

I'm implementing a cross-tabulation library in Python as a programming exercise for my new job, and I've got an implementation of the requirements that works but is inelegant and redundant. I'd like ...
3
votes
2answers
106 views

Significance testing in R, determining if the proportion in one column is significantly different from the other column within the single variable

I'm sure this is an easy command in R, but for some reason, I'm having trouble finding a solution. I'm trying to run a bunch of crosstabs (using the table() command) in R, and each tab has two ...
3
votes
1answer
100 views

Display multiple values of a column in one row in PostgreSQL

I have a query like this: select to_date(to_char(registime, 'YYYY-MM'),'YYYY-MM') as dt,count(id) as total_call from all_info where alarm_id is null group by dt order by dt And the result ...
3
votes
1answer
608 views

Stretching a CrossTab's Cell Horizontally

How would I get a value cell [in a CrossTab widget] to stretch horizontally, rather than vertically? Stretch on overflow stretches the cell vertically, rather than horizontally.
3
votes
1answer
1k views

Error incrementing crosstab dataset

I have a data source that is composed of object { groupName, rowName, colName, value }. I'm trying to put the fields row,col,val in a crosstab, separated by group [the group has headers]. A collection ...
3
votes
1answer
2k views

Linq: How to transform rows to columns with a count (Crosstab data)?

I think I need a way to perform a pivot or crosstab using C# and Linq with an indeterminate number of columns. However, I will add some beginning detail to see where it goes. < Beginning detail > ...
3
votes
5answers
556 views

Converting Rows to column

let's assume I have a table with columns such as Cost Rate Repair 12 Repair 223 Wear 1000 Wear 666 Fuel 500 ...
3
votes
4answers
3k views

Using Linq to create crosstab results [closed]

Possible Duplicate: Is it possible to Pivot data using LINQ? I'm wondering if its at all possible to create crosstab style results with Linq. I have some data that looks like the following: ...
2
votes
1answer
42 views

MySQL dynamic cross tab

I have a table like this: way stop time 1 1 00:55 1 2 01:01 1 3 01:07 2 2 01:41 2 3 01:47 2 5 01:49 3 1 ...
2
votes
2answers
58 views

How to pivot/cross-tab data in Python 3?

What is the best solution to pivot/cross-tab tables in Python 3? Is there a built-in function that will do this? Ideally, I'm looking for a Python 3 solution that does not have external dependencies. ...
2
votes
1answer
401 views

MySQL Pivot Table Problem

Greetings, Over the past few days, I have been trying to find an answer to this problem. While I have not found an answer, this site keep appearing in my search results so I thought I would give it ...
2
votes
1answer
617 views

Crosstab/Cube/Pivot Components for Delphi

I'm looking for a Delphi VCL crosstab/cube/pivotcube/olap grid component for Delphi 2009, 2010, or XE. I'm willing to sacrifice advanced features to get something open/free (or very cheap if I must) ...
2
votes
1answer
639 views

Is there a way to pivot rows to columns in MySQL without using CASE?

There are lots of posts out there on pivoting rows into columns for various databases. They seem to fall into two camps, using case statements or using a built in function of the database vendor. I ...
2
votes
4answers
153 views

SQL - Is there a command to do this?

I have a table that currently is a long list of devices and information about when they were sold. I need to take the table which would look something like this: Item | Time Sold ...
2
votes
1answer
260 views

SQL Unique Values Numbering Sequence for Pivot

For reporting purcposes, I need to Pivot results of a query that is unique on each record. My current statement is: SELECT * FROM Sales AS x WHERE (select count(*) from Sales where ...
2
votes
1answer
1k views

How do you do a crosstab query in Access with a fixed amount of columns

I want to pull data with an MS Access crosstab query so I can bind it to a report. When I load the page I get a Run-time error'3637': Cannot use the crosstab of a non-fixed column as a subquery. I ...
1
vote
1answer
31 views

CROSSTAB REPORT - MYSQL

I want generate a HTML report, using PHP and the following Mysql data: VIDEOS id | title 01 | video1 02 | video2 03 | video3 04 | video4 JURORS id | Name 01 | juror1 02 | juror2 03 | juror3 ...
1
vote
1answer
27 views

Is it possible to use Crosstab/Pivot Query in MySQL?

I'm using MySQL. This is table i have supplier_ID Item_ID Date Price QTY 1 1 2012-01-01 00:00:00 500.00 2 1 1 2012-01-03 00:00:00 ...
1
vote
1answer
62 views

PostgreSQL cross tab with three columns with values summed from one column

I am new to SQL and was trying to do a crosstab in Postgres. I would have done it in Excel, but I have a database of around 3.5 million rows, 20,000 different values for code, 7 categories in cat, and ...
1
vote
0answers
44 views

Why does my Postgres crosstab produce the error: 'Query-specified return tuple has 7 columns but crosstab returns 6'?

I'm using Postgres 8.4.9 and having trouble getting their crosstab to work. Here are what my data look like: rowname | bucket | bucket_value ...
1
vote
1answer
85 views

How can I write a Pivot table to display records for each year as columns?

I'm pretty sure I need a pivot to do this but can't quite figure it out. (sql newb) I have data like this: ID CompanyID Year Revenue Expenses 1 0003 2011 12000 4000 2 ...
1
vote
1answer
61 views

How do I write this crosstab type query in Linq (tables & data provided)

This is a simple sort of crosstab query. I am having difficulty transferring my SQL knowledge to Linq and because it is hard to test (I have not gotten linqpad running properly for WP7 development) I ...
1
vote
1answer
42 views

How to pivot a Key/Value style table into a normal table in MySQL

I am trying to convert the following table into something the is a bit easier to query. The historical data is important so it cannot get thrown away and there is an indefinite number of options for ...
1
vote
1answer
116 views

Crosstab Totals row extra cell

I need some help on crosstab in Crystal Reports 8.5, I have a spreadsheet that when exported to excel I get the following A B C Total Jan 1 2 3 5 Feb 4 5 6 15 ...
1
vote
1answer
279 views

Crosstab Sorting in JasperReports

I have a column group in a Crosstab that is a String. It uses the field SectionName. There is another field, SectionID (Integer), that I want to sort by. I put $F{SectionID} in the Sort By ...
1
vote
2answers
240 views

Sql Server 2008 Cross Tab Query

I usually can figure out any sql queries I need for my applications, but I have recently been stumped by a Cross Tab query I need to create and was wondering if you could help? I have 3 tables ...
1
vote
0answers
215 views

How to subtract consecutive columns in a crosstab report in iReport

I have developed a crosstab report in iReport. I want to subtract values from consecutive column values. How can I do that?? For e.g. If the cross tab report shows the following: Jan Feb ...
1
vote
1answer
1k views

iReport table report

I need some help in creating report using iReport for this layout. I am able to create records using crosstab, but its creating duplicate records. Male Female ...
1
vote
1answer
52 views

How to display unassigned rows while using Crosstab in Sqlserver

I have used crosstab in my query to convert row to column according to requirement. Still I am a away from the desired result. Here I have given some test data Declare @tblDepartment Table ( ...
1
vote
1answer
58 views

Help creating crosstab query with Access

I'm trying to make a crosstab query (with access tables), But I got lost writing the inner joins statements. My end result suppose to be the "QueryResult". Table1 holds the fund information, Table2 ...
1
vote
1answer
212 views

MYSQL dynamic crosstab question

Newbie here. I'm using codeigniter and mysql How can I dynamically (number of names may change) convert table from: +------+-------+-------+ | date | name | value | +------+-------+-------+ | ...
1
vote
1answer
279 views

How to replace nulls with zeros in postgresql crosstabs

I've a product table with product_id and 100+ attributes. The product_id is text whereas the attribute columns are integer, i.e. 1 if the attribute exists. When the Postgresql crosstab is run, ...
1
vote
1answer
473 views

How to create a crosstab programatically with Telerik Reporting?

I am working with the telerik reporting platform. I am trying to create a crosstab programatically and I cant seem to find any documentation on this particular subject. I have created a forum post ...
1
vote
0answers
409 views

POSTGRESQL Crosstab funktion ! [closed]

Tried to fix this Crosstab query for some days now, but keep on getting errors. I have a data set as follows: KontaktID | Investigationnme | Reply ----------------------------------------- 1001 ...
1
vote
1answer
352 views

Jasper Report Cross Tabs and Column Name ordering

Is there a way that I can order the columns in a cross tab based on an list of Strings? The items in the data do not contain any columns other than the columns listed in the String list. ...
1
vote
1answer
494 views

How to create an Access crosstab query with totals for the columns AND the rows?

I want my query result to look like this: Person1 Person2 Person3 Person4 Total Status1 2 4 7 3 16 Status2 0 1 0 3 4 ...
1
vote
0answers
520 views

Dynamically Update Crosstab View from MySQL Trigger

I'm attempting to de-normalize some data in a crosstab view which is dynamically generated on the MySQL server. Due to a helpful answer here, I've successfully created a stored procedure which ...
1
vote
2answers
106 views

Searching Engine Filters:: precount results for each filter

I'm building a search engine for cars. When viewing the search results, on the left there are filters to make the results more specific. I want to be able to show the sum of results that exist when ...
1
vote
1answer
641 views

How can I make a crosstab based on a subreport in BIRT?

I created a report with subreports like in the following tutorial: http://help.eclipse.org/helios/topic/org.eclipse.birt.doc/birt/subreport.13.2.html But instead to put the subreport in a table ...
1
vote
1answer
89 views

cross table from two tables in MySql

I have two tables, one is *parts_raised* and another is *parts_detail*. parts_raised: SN(int),Job_Number(int),Category(varchar),Part_code(int),technician(varchar),Time (timestamp), ...
1
vote
1answer
244 views

Complicated Crosstab Query Question

I have the following 2 tables: 1) Companies ID CompanyName Abbreviation Notes 1 CompanyA CA ... 2 CompanyB CB ... 3 ...
1
vote
3answers
365 views

Using single query to retrieve multivalued attribute by joining two tables without causing duplication of fields in mysql

Table 1 : QUERY: Create table client ( applicationNo int primary key, name varchar(20) ); Insert statement: Insert into client values (1,'XYZ'),(1,'ABC'),(1,'DEF'); applicationNo | name ...
1
vote
3answers
262 views

Convert rows to columns allowing duplicates

Consider the following table and rows: Listing A. ID, name, event, type 1, 'John Doe', '2010-09-01 15:00:00.000', 'input' 1, 'John Doe', '2010-09-03 11:00:00.000', 'input' 1, 'John Doe', '2010-09-04 ...
1
vote
1answer
492 views

Adding serial no in crystal report cross tab report

How to add serial number in a crystal report cross tab report? I am using dataset as a datasource.
1
vote
2answers
313 views

MS Access CrossTab query - across 3 tables

I have the following 3 tables: 1) Sweetness Table FruitIndex CountryIndex Sweetness 1 1 10 1 2 20 1 3 ...
1
vote
3answers
659 views

Crystal Reports: How do I repeat a constant number of rows / headers on each new page in a cross-tab?

I have some data that I've staged in my database as such: RowHeader ColumnHeader Value Row1 Col1 (1,1) Row1 Col2 (1,2) Row1 Col3 (1,3) ...
1
vote
0answers
701 views

horizontal to vertical table transformation in SQL Server 2005

I have a page that dynamically builds forms input fields from a table allowing users to enter input into the form. Each input is a field in a _info table. I would like report showing all of the ...

1 2 3