Pivot a table that has no numeric values that can be used to aggregate its columns with.
0
votes
1answer
84 views
Sql Data Manipulation
I have data in a table in following manner
tablename : history
page_url verified day
------------------------------------------
some_url1 true 2012-06-25
some_url2 ...
1
vote
2answers
407 views
How to create a pivot query
Imagine I have this table:
Column A | Column B | Column C
------------------------------
111 X 10
111 Y 12
How can I query this table to show the results like ...
1
vote
1answer
463 views
Remove null columns from Pivot tsql
I developed a pivot in tsql which resembles below:
MaturityBand AAA AA+ AA AA- A+ A A- Grand_Total
Less than 1 yr NULL NULL NULL NULL NULL NULL ...
1
vote
1answer
359 views
How to do a Pivot in Linq [duplicate]
Possible Duplicate:
How can i made a pivot for this
I have a table as provided below
ID | value | Name
--------+---------------+------------------
1 Digital ...
3
votes
1answer
984 views
convert xml string in a sql table to dynamic columns
I have two tables (using table variables for illustration. You can run these directly in management studio) that are related by the Id column.
Items in the first table has some standard set of ...
0
votes
1answer
443 views
Dynamically pivot table data without using aggregate function where columns are not consistent?
I have read many articles but am still not able to get the required result.
I want to display all data for weight, pulsOx, bp and survey including redundant rows based on dates FromeDate and ToDate ...
3
votes
2answers
445 views
Should I use Pivot to translate SQL Server 2008 row values to column names when I don't want to use an aggregate?
I am trying to get a handle on manipulating table data into more visually appealing formats for output. This could be part of the problem as what I want may be intended for separate reporting ...
2
votes
4answers
2k views
sql query to show results vertically
How to transform this:
ID Name Description
1 Test1a TestDesc1a
1 Test1b TestDesc1b
2 Test2a TestDesc2a
2 Test2b TestDesc2b
into this:
ID Column 1 2
1 ...
1
vote
2answers
617 views
Multiple rows into single row with header name
My problem is like this question but I am fetching data from different table:
Name ID Subject-name obtained-marks
gumman 9 English 3
gumman 9 Islamic-Studies 4
gumman 9 ...
-3
votes
1answer
204 views
data Transformation using linq [closed]
pls i need to arrage my data in datatable input 1 to ouput table 1
Module | date(year) | xrate | yrate | cumrate
----------+------------+--------+---------+---------
No2_gft 2013 ...
1
vote
4answers
127 views
Pivoting help needed
Please help me with this. I am totally stuck. I have coders block or something.
I have the following table
ID Name Cost Included
---- ---------- ------- ----------
1 Package1 ...
3
votes
2answers
570 views
In MySQL, How do you dynamically SELECT the values of one table, as columns in another?
I'm no MySQL guru, but I get around the basic stuff pretty well. Thanks for your feedback.
I have two tables user and favorite. Each user can have multiple unique favorites.
table user u
[ user_id ...
1
vote
3answers
219 views
simple sql: how do I group into separate columns?
Say I keep stocks prices in a 3 column table like this:
create table stocks(
ticker text,
day int,
price int
);
insert into stocks values ('aapl', 1, 100);
insert into stocks values ...
0
votes
2answers
2k views
how to transform vertical fields in a table to horizontal result by SQL
I have a table like this:
create table t1 {
person_id int,
item_name varchar(30),
item_value varchar(100)
};
Suppose person_id+item_name is the composite key, now I have some data (5 records) ...
1
vote
2answers
218 views
Select query by type wise
Table1
Code, desc, type id
01 Rajan 1
01 Sajan 1
01 Vijayan 2
01 Suresh 3
01 Caresh 4
01 Sujesh 4
01 vikran 4
02 desk 1
02 card 2
02 villa 2
...
0
votes
1answer
910 views
Display cell value as column name using SQL
I have got table as given below in database:
Name Grade Subject
Ami HD Java
Ami D C++
Bec D Java
Bec P C++
...
6
votes
4answers
4k views
Sql Server 2008 - PIVOT without Aggregation Function
I know you've got multiple topics touching on this. But, I havent found one that addressed my needs. I need to (on demand) pivot select deep table data to a wide output table. The gotcha in this is ...
1
vote
1answer
258 views
SQL Query to Grid from Multiple Tables
I am trying to write a query to display to a data control.
I'm having some issues trying to get the query I need.
I want the grid to to display:
product name dealer 1 dealer 2 dealer ...
1
vote
3answers
429 views
Help needed in data pivoting without aggregate in sqlserver 2008
I need to pivot a table as follows :
the initial table is like this
GEO PRD PACK DATATYPE Sales1 Sales2
T1 P1 M1 22 1 2
T1 P1 M1 23 2 8
T1 P1 M1 24 ...
1
vote
1answer
319 views
Pivot data in linq
I've a data set which returns me this set of results:
Date |Location |Amount
11.03.2011|Location1| 1000
11.03.2011|Location2| 1000
11.03.2011|Location3| 1000
12.03.2011|Location1| 1000 ...
3
votes
3answers
2k views
sql pivot with no aggregate
Whilst trying to pivot a sql table I came across this post Here . By using this method I have created a query. However i have now realised that it of course aggregates the results with the MAX ...
3
votes
2answers
1k views
how do you pivot sql data without aggregating a column
I have the following output in a query.
SKILL LEVEL SCORERANGE
-----------------------------------------------------------------------------
...
3
votes
1answer
789 views
Pivot tables without aggregation?
I have a list of items - each item has a title, plus a bunch of attributes, including a date.
If I drop the date into the row box of a pivot table, then group it, and drop the title below - so I have ...
0
votes
2answers
2k views
SQL Server 2008 pivot without aggregate
I have table to test score data that I need to pivot and I am stuck on how to do it.
I have the data as this:
gradelistening speaking reading writing
0 0.0 0.0 0.0 0.0
1 399.4 423.8 0.0 ...
12
votes
4answers
13k views
SQL Transpose Rows as Columns
I have an interesting conundrum which I believe can be solved in purely SQL. I have tables similar to the following:
responses:
user_id | question_id | body
----------------------------
1 | 1 ...
31
votes
4answers
31k views
TSQL Pivot without aggregate function
I have a table like this...
CustomerID DBColumnName Data
--------------------------------------
1 FirstName Joe
1 MiddleName S
1 LastName Smith
1 ...
1
vote
1answer
2k views
How to create a PIVOT TABLE without summing a column
Here is my query
CREATE view pivmehis WITH ENCRYPTION
as
SELECT APPROVED, [Not Approved] as REJECT, NULL
FROM
(SELECT MgtApproval
from LeaveRequest) l
PIVOT
(
Sum (SchedId) --I DON'T WANT TO SUM ...

