Tagged Questions

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

learn more… | top users | synonyms

84
votes
25answers
129k views

Fetch the row which has the Max value for a column

Table: UserId, Value, Date. I want to get the UserId, Value for the max(Date) for each UserId. That is, the Value for each UserId that has the latest date. Is there a way to do this simply in SQL? ...
24
votes
7answers
19k views

Retrieving the last record in each group

There is a table messages that contains data as shown below: Id Name Other_Columns ------------------------- 1 A A_data_1 2 A A_data_2 3 A A_data_3 4 B ...
15
votes
6answers
17k views

ROW_NUMBER() in MySQL

Is there a nice way in MySQL to replicate the MS SQL Server function ROW_NUMBER()? For example: SELECT col1, col2, ROW_NUMBER() OVER (PARTITION BY col1, col2 ORDER BY col3 DESC) AS intRow ...
14
votes
4answers
4k views

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

Suppose I have a table of customers and a table of purchases. Each purchase belongs to one customer. I want to get a list of all customers along with their last purchase in one SELECT statement. What ...
10
votes
6answers
1k views

How to SELECT the newest four items per category?

I have a database of items. Each item is categorized with a category ID from a category table. I am trying to create a page that lists every category, and underneath each category I want to show the ...
9
votes
7answers
163 views

How to select single row based on the max value in multiple rows [closed]

Possible Duplicate: SQL: Find the max record per group I have a table with four columns as such: name major minor revision p1 0 4 3 p1 1 0 0 p1 1 ...
9
votes
3answers
135 views

Optimal performing query for latest record for each N

Here is the scenario I find myself in. I have a reasonably big table that I need to query the latest records from. Here is the create for the essential columns for the query: CREATE TABLE ...
8
votes
5answers
186 views

MySQL group by and max returns wrong rows

I have two tables and I try to find the "post" with the highest score per day. CREATE TABLE IF NOT EXISTS `posts_points` ( `post_id` int(10) unsigned NOT NULL, `comments` smallint(5) unsigned NOT ...
8
votes
5answers
971 views

How do I join the most recent row in one table to another table?

I have data that looks like this: entities id name 1 Apple 2 Orange 3 Banana Periodically, a process will run and give a score to each entity. The process ...
8
votes
8answers
17k views

select top 10 records for each category

I want to return top 10 records from each section in the one query. Can anyone help how to do it. Section is one of the column in the table. Database is sql server 2005. Top 10 by date entered. ...
7
votes
2answers
817 views

mysql select top n max values

How can you select the top n max values from a table? For a table like this: column1 column2 1 foo 2 foo 3 foo 4 foo 5 bar 6 bar 7 bar ...
7
votes
7answers
719 views

Trying to find the second largest value in a column (postgres sql)

I am trying to find the second largest value in a column and only the second largest value. select a.name, max(a.word) as word from apple a where a.word < (select max(a.word) from apple a) group ...
7
votes
2answers
6k views

SQL: Select first row in each a GROUP BY group?

As the title suggests, I'd like to select the first row of each set of rows grouped with a GROUP BY. Specifically, if I've got a "purchases" table that looks like this: > SELECT * FROM purchases: ...
7
votes
3answers
5k views

mysql: Using LIMIT within GROUP BY to get N results per group?

The following query: SELECT year, id, rate FROM h WHERE year BETWEEN 2000 AND 2009 AND id IN (SELECT rid FROM table2) GROUP BY id, year ORDER BY id, rate DESC yields: year id rate 2006 p01 ...
6
votes
2answers
325 views

MySql second-smallest element in each group

I have a table similar to the following: date | expiry ------------------------- 2010-01-01 | 2010-02-01 2010-01-01 | 2010-03-02 2010-01-01 | 2010-04-04 2010-02-01 | 2010-03-01 ...
6
votes
2answers
145 views

SQL Server - pull X random records per state

I have a table with records for each zip code in the united states. For the purposes of displaying on a map, I need to select X random records per state. How would I go about doing this?
6
votes
8answers
878 views

How do I limit a LEFT JOIN to the 1st result in SQL Server?

I have a bit of SQL that is almost doing what I want it to do. I'm working with three tables, a Users, UserPhoneNumbers and UserPhoneNumberTypes. I'm trying to get a list of users with their phone ...
6
votes
3answers
180 views

How to order, group, order with mySQL

Here is a simplified version of my table tbl_records -title -created -views I am wondering how I can make a query where they are grouped by title, but the record that is returned for each group is ...
5
votes
4answers
243 views

SQL Select only rows with Max Value on a Column

I have this table for documents (simplified version here): +------+-------+--------------------------------------+ | id | rev | content | ...
5
votes
2answers
169 views

How do I select TOP 5 PERCENT from each group?

I have a sample table like this: CREATE TABLE #TEMP(Category VARCHAR(100), Name VARCHAR(100)) INSERT INTO #TEMP VALUES('A', 'John') INSERT INTO #TEMP VALUES('A', 'John') INSERT INTO #TEMP ...
5
votes
5answers
301 views

Limitations of GROUP BY

Disclaimer: I'm an SQL newb and this is for a class, but I could really use a poke in the right direction. I've got these three tables: student(_sid_, sname, sex, age, year, gpa) section(_dname_, ...
5
votes
4answers
211 views

Select items that are the top N results for a related table

Say I have a game where a question is asked, people post responses which are scored, and the top 10 responses win. I have a SQL database that stores all of this information, so I might have tables ...
5
votes
4answers
388 views

Select exactly one row for each employee using unordered field as criteria

I have a data set that looks like the following. EMPLID PHONE_TYPE PHONE ------ ---------- -------- 100 HOME 111-1111 100 WORK 222-2222 101 HOME 333-3333 102 ...
5
votes
3answers
6k views

MySQL Select Statement DISTINCT for Multiple Columns

I am currently trying to construct a somewhat tricky MySQL Select Statement. Here is what I am trying to accomplish: I have a table like this: data_table uniqueID stringID subject ...
4
votes
1answer
62 views

select minimum from two tables using left join

I need to select the minimum of a set of dates across two tables and my SQL is so rusty that I can't think ... I have a table with some business objects: create table FOO ( FOO_ID number(19, 0) ...
4
votes
1answer
63 views

Selecting multiple sets of rows with a single sql query

I have a table of questions set out like so.. id | question | answer | syllabus | difficulty I want to create an SQL statement that selects 5 questions at random for each of the distinct ...
4
votes
3answers
105 views

Adding (SELECTING) two more other columns to this resultset

Suppose I have the following MySQL table: user_id date_of_application date_ended grade status --------------------------------------------------------------- 1 2011-01-01 ...
4
votes
2answers
557 views

mySQL Returning the top 5 of each category

I want to be able to return 5 menuitem per menu. I've tried this several script but had no luck. here are the tables menus ------- menuid int() profileName varchar(35) menuitems ----------- itemid ...
4
votes
3answers
900 views

Optimal way to join three tables in SQLite

A (simplified) database of Internet bookmarks. I thought it'd make sense to organize the tables logically, like so: Bookmarks (id, title, url; basically external data) +------+------------+-----+ | ...
4
votes
3answers
383 views

Retrieveing the most recent records within a query

I have the following tables: tblPerson: PersonID | Name --------------------- 1 | John Smith 2 | Jane Doe 3 | David Hoshi tblLocation: LocationID | Timestamp | PersonID | X ...
4
votes
3answers
228 views

MySQL Query Design for Latest Post per Forum

forums_forum +-----+--------+-------------+-------+-----+ | fid | name | description | index | cid | +-----+--------+-------------+-------+-----+ | 36 | gdghdf | hjghj | 54 | 5 | | 45 ...
4
votes
3answers
347 views

How to SELECT DISTINCT Info with TOP 1 Info and an Order By FROM the Top 1 Info

I have 2 tables, that look like: CustomerInfo(CustomterID, CustomerName) CustomerReviews(ReviewID, CustomerID, Review, Score) I want to search reviews for a string and return CustomerInfo.CustomerID ...
4
votes
3answers
64 views

mysql query clarification

I have a query which I am wondering if the result I am getting is the one that I am expecting. The table structure goes like this : Table : results ID TestCase Set Analyzed Verdict ...
4
votes
2answers
2k views

Selecting the most common value from relation - SQL statement

I have a table within my database that has many records, some records share the same value for one of the columns. e.g. | id | name | software | ______________________________ | 1 | john | ...
4
votes
2answers
2k views

MYSQL top N rows from multiple table join

Like, there is top keyword in sql server 2005, how to select top 1 row in mysql if i have join on multiple table & want to retrieve extreme of each ID/column. Limit restricts the no. of row ...
4
votes
3answers
148 views

How can I query rankings for the users in my DB, but only consider the latest entry for each user?

Lets say I have a database table called "Scrape" possibly setup like: UserID (int) UserName (varchar) Wins (int) Losses (int) ScrapeDate (datetime) I'm trying to be able to rank my users ...
4
votes
1answer
1k views

SQL Query, Selecting 5 most recent in each group

I have this table CREATE TABLE `codes` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `language_id` int(11) unsigned NOT NULL, `title` varchar(60) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, ...
4
votes
5answers
850 views

Need help with a complex Join statement in SQL

How can you join between a table with a sparse number of dates and another table with an exhaustive number of dates such that the gaps between the sparse dates take the values of the previous sparse ...
4
votes
5answers
7k views

Get top results for each group (in Oracle)

How would I be able to get N results for several groups in an oracle query. For example, given the following table: |--------+------------+------------| | emp_id | name | occupation | ...
3
votes
4answers
66 views

Finding the record with maximum value in SQL

I have the following table: Class, Name, Score 1, Anna, 34 1, Andy, 80 2, Brooke, 90 2, Brad, 70 3, Charles, 67 3, Christina, 66 How to I find the 'Name' with maximum 'Score' in each 'Class' ? ...
3
votes
4answers
79 views

Query efficiency (multiple selects)

I have two tables - one called customer_records and another called customer_actions. customer_records has the following schema: CustomerID (auto increment, primary key) CustomerName ...etc... ...
3
votes
1answer
59 views

At most N rows from each group

I have a SQL table containing customer information (we'll call it CustomerDB), including an address column. Many of the rows in this table have exact duplicate addresses. The business requirement is ...
3
votes
4answers
126 views

Select one row with distinct value of one column

This is the data id name start_date end_date merchant_id =================================================== 111 name1 25-nov-11 31-jan-12 9999 222 name2 23-nov-11 ...
3
votes
2answers
245 views

MySQL select top N rows out of M groups

I have this table: CREATE TABLE IF NOT EXISTS `catalog_sites` ( `id` int(10) unsigned NOT NULL auto_increment, `cat_id` int(10) unsigned NOT NULL, `date` datetime NOT NULL, `url` varchar(255) ...
3
votes
4answers
92 views

Group-wise Maximum of a Certain Column

I've got the table: SELECT * FROM shop; +---------+--------+------ | article | dealer | price +---------+--------+------ | 0001 | A | 3.45 | 0001 | B | 3.99 | 0002 | A | ...
3
votes
4answers
104 views

MySQL Left Join + Min

Seemingly simple MySQL question, but I've never had to do this before.. I have two tables, items and prices, with a one-to-many relationship. Items Table id, name Prices Table id, item_id, price ...
3
votes
2answers
66 views

SQL. Column MAX

Ok, So i have 3 Tables: Movies (Movienum, Title, Yearreleased) Actsin (Movienum, StarID) Stars (StarID, Givenname, Familyname) Bold for primary key, italics of foreign Now I have to find the most ...
3
votes
4answers
82 views

How can I get a single result from a related table in SQL?

I have the following SQL query: SELECT gallery.id, gallery.thumbnail_big, products.id, products.title, products.size, products.price, products.text_description, ...
3
votes
2answers
98 views

SQL Query help - 10 records for each distinct column value

I have a cars table which contains car listings. The table structure looks something like: cars - id - title - make - year I would like a query which returns 10 cars of each make. ...
3
votes
4answers
76 views

Deleting Rows: No Single Member Has More Than x Records

I have a table structured like this: CREAT TABLE `member_logins` ( `id` bigint(10) unsigned not null auto_increment, `member_id` mediumint(8) unsigned not null, `date_created` datetime ...

1 2 3 4 5 9