0
votes
1answer
44 views

How to get corresponding value from max(datetime) with MySQL?

MySQL software table: .------------------------------------------------------------. | id | hostname | software | version | install_date | ...
0
votes
1answer
79 views

How to pivot rows without grouping, counting, averaging

I am reworking some tables from a screwed up database. A few of the tables had the same data with different table names, and each one of them also had similar data but different column names. Anyway, ...
0
votes
2answers
93 views

Represent Fare Chart in MySQL

I am working on a booking system for a bus transportation system. I am having difficulties representing the Fare table as a table in MySQL. An example of a fare table for one particular route that was ...
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 ...
2
votes
0answers
212 views

Most efficient way to do a pivot table-like query to summarize user edits in django

I want to show the user the last 10 changes across all of my database objects. I'm using django-reversion to track the history of changes to my model objects. I'm also somewhat duplicating this in a ...
0
votes
2answers
598 views

SQL Pivot Table producing duplicates

Developers, I am new to pivot tables, and am having a little problem with duplicates. My table, before pivoting looks like so: location | food Tennessee | pear Tennessee | orange Florida | orange ...
0
votes
1answer
157 views

How to transform rows into columns having no column with unique values?

I am trying to transform some rows into columns in MySQL. I know it has been asked and answered previously, like here. My problem is, there is nothing in my rows on which I can apply the 'if' ...
0
votes
0answers
718 views

Good Pivot Table / Data Table algorithm in Java

I have a database to access via JDBC which returns around 200k of records I have to consolidate data table style for further processing. I could if that leads to good performance send a few SELECT ...
2
votes
1answer
4k views

How to use Access database with query as pivot table in Excel

I want to use Access database with query for pivot table in Excel. How do I do that?