Query the row with the greatest/least value per group.

learn more… | top users | synonyms

0
votes
5answers
32 views

SQL return the row ONLY with the later date

I have the following rows in a table: user_id school_id graduation_date ------- --------- --------------- 1 123 2006-05-19 1 123 2008-05-19 2 123 ...
0
votes
1answer
18 views

mysql - multiple min values from multiple groups in table

hi I tried multiple approaches so far, I have a laaaaarge table (thousands of records) where I have various trips having some besides other values few different countries, and the duration of trips in ...
0
votes
4answers
73 views

Additional columns to Select(Max) query

I have my SQL code working to return Max t.[CreatedDateTime] (See Below) giving me the correct results, however I wish to add an additional column t.[Owner] and not display the [CreatedDateTime] in ...
2
votes
1answer
70 views

MySQL get one record per group

I have a MySQL table targeted_refills with columns: id (unique, primary key), pat_name, pat_phone, rx_number, drug_name, qty_disp, last_date, qty_left, price_code, last_price, last_contact, doc_name, ...
0
votes
3answers
41 views

MYSQL select the lastest time of each date

Hi I have a mysql table and it contained something like this HISTORY =================== 2013-07-01 16:23:43 2013-07-01 17:32:11 2013-07-01 20:44:22 2013-07-02 23:65:12 2013-07-03 10:23:32 2013:07-03 ...
1
vote
2answers
60 views

SQL Left join: selecting the last records in a one-to-many relationship

I have a customer table, and a detail table. I want to want to pull a record for every customer in the table and show the latest detail data on that customer where applicable. Currently my where ...
1
vote
2answers
51 views

MySQL - Get x records for every value y in a certain column

I have a table like this: columns: id | parent records: 1 | 1 2 | 1 3 | 1 4 | 2 5 | 2 6 | 2 7 | 3 8 | 4 9 | 5 And for all parents, I want to get the first 2 records, so i should have: 1 | 1 2 ...
0
votes
1answer
38 views

Retrieve a column value without group by statement in SQL

I need SellerID also in my select statement for them who is having minimum price and maximum price. Below is the query; please tell what change is required?? Select count(Id) TotalSeller, ...
3
votes
6answers
106 views

Select row with most recent date per user

I have a table ("lms_attendance") of users' check-in and out times that looks like this: id user time io (enum) 1 9 1370931202 out 2 9 1370931664 out 3 6 1370932128 out 4 12 ...
0
votes
3answers
27 views

Get latest dates from an array per object group in Powershell

I have an array $data : PS> $data Datum User Computer ----- --------- -------- ...
2
votes
2answers
54 views

SELECT records that have top n counts for one column

I am using postgresql 9.2. I have a dataset like this: ID A B 1 x x 2 x x 2 x x 2 x x 3 x x 4 x x 4 x x I want to display records with ID that has the top n ...
7
votes
6answers
167 views

Average of latest N records per group

My current application calculates a point average based on all records for each user: SELECT `user_id`, AVG(`points`) AS pts FROM `players` WHERE `points` != 0 GROUP BY `user_id` The business ...
0
votes
4answers
68 views

How to select last entry for one distinct pairing of two columns in Oracle?

I need to select the last row in mytable for a given pair of columns in Oracle v11.2: id type timestamp raw_value normal_value -- ---- --------- --------- ------------ 1 ...
1
vote
3answers
54 views

How to select id with max date group by category in PostgreSQL?

For an example, I would like to select id with max date group by category, the result is: 7, 2, 6 id category date 1 a 2013-01-01 2 b 2013-01-03 3 c 2013-01-02 4 a ...
0
votes
1answer
42 views

Propel 1.6 Greatest n per group

I need to build propel query that can get the latest purchase of client Please use these table/column names in your answer: customer: id, name purchase: id, customer_id, date from this question ...
2
votes
3answers
85 views

Return top 10 per year

I need to return the top 10 products per year, how can I do this with my following query? SELECT DP.ProductID , DP.Name , Year(FS.OrderDate) as TheYear , FS.OrderQty , FS.OrderAmount ...
0
votes
2answers
117 views

LIMIT SQL query per GROUP BY

I have 20 classroom, each classroom has 50 students. is it possible to find 10 best students in each classroom in a single query statement? The table "klas": int id int cla_id int stu_id int ...
0
votes
2answers
32 views

join only with first row which refer to parent table

I have following tables: A B id | a | id | b -------- ------- 1 | . | 1 | 1 -------- ------- 2 | . | 1 | 2 -------- ------- 3 | . | 2 | 1 ------- 2 ...
0
votes
5answers
55 views

Relational algebra: select only last try

consider this database table : table: score(player_name,player_lastname,try,score) primary key: (player_name,player_lastname,try) (dont discuss the table schema, its just an example) this table hold ...
2
votes
3answers
78 views

PHP/MySQL - Need assistance writing a SQL Query

I have a martial arts website where I have users in one table and the belts they have earned in another. Here are some example tables / data to help describe my problem: Users table : ...
-2
votes
1answer
90 views

List the top ten employees from each department

How can I list the top ten employees from each department in order and each department the employees should be ordered according to the total amount of purchases? These are the tables: CREATE TABLE ...
-2
votes
2answers
50 views

How do I order a group by clause in sql [duplicate]

I want to select from my FileList all different files using group by. But I want to get Back only the elements with the highest id. I only get the first entry back. How to fix this? select * from ...
1
vote
2answers
76 views

How to fetch top n records for each category [duplicate]

I have a table like below, placed at SQL FIDDLE id empid proj file rating ~~ ~~~~~ ~~~~ ~~~~ ~~~~~~ 1 1863 G1 file1 1 2 P4645 G1 file2 1 3 P6682 G1 file3 1 4 P6682 ...
0
votes
2answers
73 views

Mysql - Return rows that have no associated records in another table plus max that do have records

A simplified version of my problem. I have 2 tables: Scores: id code_id score 1 11 100 2 12 20 3 13 40 4 14 70 5 15 90 6 16 10 7 17 30 8 18 50 ...
0
votes
3answers
142 views

SQL query to find the highest paid salary for each lanauges

As I am not expert in writing the SQL queries so want for help. I have a table called programmer whose structure & data look like: PNAME,PROF1,PROF2,SALARY In prof1 data are: ...
0
votes
1answer
54 views

How to get distinct column data on the basis of latest date time from SQL Server 2008 R2

I have table login with columns id, username, logindate. Sample data looks like this: {1, username1, logindate1} {2, username2, logindate2} {3, username1, logindate3} {4, username2, logindate4} ...
1
vote
2answers
160 views

PostgreSQL error: subquery must return only one column

Using PostgreSQL-9.1 and PostGIS 2.0.1, when doing a SELECT query containing a sub-query that returns multiple columns, I am getting the error subquery must return only one column. How can the ...
2
votes
3answers
130 views

Row with latest value by customer and month

I have a table that keeps track of changes in customer profiles. Here's a simplified version: CREATE TABLE HISTORY ( CUSTOMER_ID NUMBER(9,0), DATE_CHANGED DATE, ACCOUNT_TYPE ...
0
votes
2answers
55 views

How to apply time slices to an existing SQL query

I have a table with approx 8 million rows that I need time slice data from. I'm using PostgreSQL 9.1. I need to query this table for a sum of the max(start_time) associated 'data' values for each ...
-1
votes
2answers
95 views

Select EMP with max SAL from each DEPT

I´m having a bad time with a SQL query. I´m using oracle default tables: 'EMP' TABLE http://imageshack.us/photo/my-images/850/sinttuloxps.png/ AND 'DEPT' TABLE ...
1
vote
2answers
74 views

SQL return n rows per row value

Greetings SQL people of all nations. Simple question, hopefully a simple answer. I have an Oracle database table with persons' information. Columns are: FirstName, LastName, BirthDate, ...
2
votes
4answers
103 views

retrieve the last inserted row from each user in database

I want to make a query in mysql with php and get the last inserted row from each user i have in a database. Let me give you an example. Suppose we have a table with 10 rows ID Message User ...
1
vote
3answers
98 views

Getting latest record from multiple MySQL Tables based on 2 criteria

I have a database that contains serval tables that hold information about the packages we have deployed into our various environments. This database is then interrogated to give an overall picture of ...
0
votes
1answer
70 views

Speed up query that uses WHERE id IN

Here is a query that takes about 5-6 seconds. The inner part only takes around 50 ms. SELECT id,messages.to,messages.from,message,datetime,messages.read FROM messages WHERE id IN( //inside brackets ...
0
votes
3answers
84 views

Need To Pull Most Recent Record By Timestamp Per Unique ID

I'm going to apologize up front, this is my first question on stackoverflow... I am attempting to query a table of records where each row has a VehicleID, latitude, longitude, timestamp and various ...
0
votes
2answers
110 views

MySQL find top results for each group

I have searched a lot, but I can't find an answer or something near. I have a table like this: id int(11) NO PRI auto_increment attribute_id int(11) YES user_id ...
2
votes
2answers
108 views

Get highest value for each group of names

I have the following table as an example: Job_name RunTime AR_job1 100 AR_job2 120 AR_job3 130 EP_job1 100 EP_job2 80 Job field is just text and Runtime is an integer ...
1
vote
5answers
82 views

How do I select last message for each conversation?

Here is how my database looks like: table: conversations +----+--------+--------+ | id | user_1 | user_2 | +----+--------+--------+ | 1 | 1 | 2 | | 2 | 2 | 3 | | 3 | 1 | ...
0
votes
2answers
119 views

T-SQL select rows by oldest date and unique category

I'm using Microsoft SQL. I have a table that contains information stored by two different categories and a date. For example: ID Cat1 Cat2 Date/Time Data 1 1 A 11:00 ...
0
votes
3answers
111 views

Get last action of a person on a specific date

I have a table with the following rows: NAME RFID ACTION TIME DATE Kashif Islam E2001026770D00742340248A OUT 12:40:00 1/30/2013 ...
1
vote
3answers
79 views

Doctrine DQL greatest-n-per-group

Here are 2 tables of my Symfony2 project : +-----------+ +----------------------------+ | EVENT | | PHOTO | +-----------+ +------+-----------+---------+ | id ...
0
votes
0answers
52 views

mysql most count for each country two tables

For a statistic i want to show the "best producer" for each country. There are two tables: dog and owner. In owner there is the Country in dog are all other nessecary. I count how often dog.id is ...
2
votes
3answers
127 views

select rows satisfying some criteria and with maximum value in a certain column

I have a table of metadata for updates to a software package. The table has columns id, name, version. I want to select all rows where the name is one of some given list of names and the version is ...
0
votes
5answers
172 views

Limiting the number of rows returned from an inner join

I have 2 tables, descriptions of vehciles and a itorical table of lat/long as they move. Both tables have an Id key (PK and FK). My SELECT looks like this SELECT vehicles.id, ...
1
vote
1answer
62 views

Left Join Yielding Inner Join Results - PostgreSQL

I'm looking to take values from an event log that occur on a sporadic basis and extend these values on all dates between events. For example: A full series may look like... 2013-01-01 2013-01-02 ...
-1
votes
2answers
67 views

SQL - Query control record chosen by group by [closed]

I want to perform a query with "group by" on table but want to apply 3 rules on the records that will by chosen for each group. Is this possible? Using Mysql SGBD. idMatch Country VideoType VideoId ...
2
votes
1answer
57 views

sql server: indexed view containing greatest row per group

I'm trying to make an indexed view that computes the greatest n per group for a table in my database. I've tried three different queries for the view though, and they all seem to be not allowed by sql ...
1
vote
2answers
118 views

Getting Max date from multiple table after INNER JOIN

I have two following tables table 1) ID | HOTEL ID | NAME 1 100 xyz 2 101 pqr 3 102 abc table 2) ID | BOOKING ID | DEPARTURE DATE | AMOUNT 1 1 ...
1
vote
1answer
49 views

Grouping data, later getting extra fields

I have the following data struct: Pizza ------------------ id| name --+--------------- 1 | The Best Pizza 2 | Other Pizza Toppings ----------------------------------------- id| pizza | order | type ...
1
vote
2answers
137 views

Getting Distinct Max Values from Multiple Columns

I'm working on a sports database, and I want to write a query that will return the name and the statistical value for certain categories. For example, goal leader, assist leader, points leader, +/- ...

1 2 3 4 5 15