0
votes
0answers
69 views

How to retrieve stock data for last 2 weeks in one row per stock?

I'm using MySQL and I'm trying to display a table with a listing of stocks and their prices per day for the last 2 weeks. I need its row headings to be something like stock.symbol, stock.name, ...
-1
votes
1answer
334 views

using dynamic sql in c# code in visual studio

I am developing a application in which i need to generate reports based on in and out entries of employees. I dont have experience with database related applications using dynamic queries. In this ...
2
votes
2answers
260 views

SQL - Pivot table and group by not working

I have a table as follows: Product #users Date Count Type prodA 29 2013-02-27 113 Document prodA 31 2013-03-02 152 Extraction prodB 17 ...
1
vote
4answers
125 views

MYSQL two columns that have value in first column how can i do an inner join

Hi I have a table that looks like this dt ticker open 1 A 1 1 B 3 2 A 1.1 2 B 2.5 I would need the result to look like dt A B 1 1 ...
0
votes
2answers
235 views

Way to put pivote sql result into temptable

work on sql server .Write one pivotal sql ,bellow is my tables and pivotal sql syntax.MY problem is failed to put this pivotal value in Temp table . -----------------Table-1------------- CREATE TABLE ...
1
vote
2answers
98 views

MySQL, move data from rows to columns

I have a MySQL table that has the following data: id userid fieldid data -- ------ ------- ---- 1 186 1 London 2 186 3 Accountant 3 186 ...
0
votes
1answer
134 views

mysql pivot table or something

Ok, I'm still a beginner in sql and can not figure this one out yet. I have four tables: companies, persons, details, person_details. companies: id, compname (1, ACME), (2, ACME Group), ... ...
1
vote
3answers
382 views

MySQL - How to display row value as column name using concat and group_concat

Table 1: id | typeid | available| 0 | 1 | 12 | 0 | 2 | 44 | Table 2: typeid | typename | 1 | CL | 2 | ML | I have a query using ...
0
votes
1answer
70 views

Reforming table structure of columns possible?

I have bee at this all day. I have played around with a lot of MySQL code and I am either inept, or not very good at coding.. I have a table name id type amount ...
3
votes
2answers
173 views

Aggregating data from multiple columns (similar to a PIVOT table)

I have a table that has the following data (shortened for this example): C1 C2 C3 C4 ========================= 1 0 1 1 0 2 1 1 0 1 3 1 0 1 1 4 ...
0
votes
1answer
96 views

Complex SQL Pivot

So I've got a query selecting data from 4 tables: cases taxonomies (containing titles and data about taxonomies) taxonomy_values (possible values for the taxonomies) post_taxonomy_values (holds IDs ...
0
votes
1answer
124 views

Cross tab (Pivot) query in SQL

I am using a pivot query in SQL as below: SELECT classification, [BSL] AS BSL, [AQ] AS AQ, [KYN] AS KYN, ([BSL] + [AQ] + [KYN]) AS CR_TTL FROM ( SELECT classification, Shed ...
0
votes
2answers
864 views

PIVOT SQL - How to display the column we are pivoting on?

I have written my pivot SQL and it is working. The current SQL Statement is below and I will show an example of how the data is returned. I need to add one column and this is where it bombs: Select ...
0
votes
2answers
3k views

SQL pivot table with column and row totals

In am trying to add row and column totals to this pivot table create table test4(city nvarchar(10), race nvarchar(30), sex nvarchar(10), age int) insert into test4 values ('Austin', ...
0
votes
1answer
94 views

Format cross tabs in a pivot table

I have this query that pivots race grouped by age create table test4(city nvarchar(10), race nvarchar(30), sex nvarchar(10), age int) insert into test4 values ('Austin', ...
2
votes
2answers
168 views

SQL Tables: Can I Pivot/Join with N rows?

First, I am a SQL noob, second if there is a better solution that can be implement in code later, I'd love to hear it. Also, the data is currently stored in MySQL but will eventually have to be ported ...
1
vote
1answer
2k views

Select MySQL row value as column title?

I'm trying to do a customizable and extendable profile system for my CMS. From the user perspective it is straight forward, but for the admin I want all data, including the profile data, to be ...
0
votes
1answer
403 views

T-Sql - Pivot Error

I have the following code in a T-Sql query, I am getting the following error message and I am not really sure what is causing the error. I am writing the Pivot statement to be dynamic b/c I do not ...
2
votes
3answers
303 views

How to find count of transaction of type1 and type2 for each customer in mysql

I have a customer table: id name 1 customer1 2 customer2 3 customer3 and a transaction table: id customer amount type 1 1 10 type1 2 1 15 type1 ...