Tagged Questions
107
votes
9answers
60k 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 ...
57
votes
4answers
43k views
SQL Select only rows with Max Value on a Column
I have this table for documents (simplified version here):
+------+-------+--------------------------------------+
| id | rev | content |
...
35
votes
8answers
50k 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
...
32
votes
8answers
25k 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 ...
12
votes
7answers
4k 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 ...
10
votes
7answers
4k views
How to select single row based on the max value in multiple rows [duplicate]
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 ...
10
votes
2answers
5k 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
...
8
votes
3answers
22k views
Mysql select distinct
I am trying to select of the duplicate rows in mysql table it's working fine for me but the problem is that it is not letting me select all the fields in that query , just letting me select the field ...
8
votes
5answers
17k 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
...
8
votes
5answers
490 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 ...
7
votes
3answers
7k 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 | ...
7
votes
3answers
7k views
SQL: Find the max record per group [duplicate]
Possible Duplicate:
Retrieving the last record in each group
I have one table, which has three fields and data.
Name , Top , Total
cat , 1 , 10
dog , 2 , 7
cat , 3 , ...
6
votes
2answers
1k views
Top N Per Group with Multiple Table Joins
Based on my research, this is a very common problem which generally has a fairly simple solution. My task is to alter several queries from get all results into get top 3 per group. At first this was ...
6
votes
2answers
698 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
3answers
237 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 ...
6
votes
3answers
388 views
MySQL - Average most recent columns in other table
I have two tables: "servers" and "stats"
servers has a column called "id" that auto-increments.
stats has a column called "server" that corresponds to a row in the servers table, a column called ...
6
votes
2answers
225 views
N-per-group with JOIN
I'm trying to replicate the logic as show here. However, I'm not having any luck when there are joins. Below is a minimised version of my query:
SELECT resources.title, catRel.catRef
FROM resources
...
5
votes
5answers
3k views
Get top n records for each group of grouped results
The following is the simplest possible example, though any solution should be able to scale to however many n top results are needed:
Given a table like that below, with person, group, and age ...
5
votes
4answers
1k views
SQL - Give me 3 hits for each type only
I have some kind of impossible request :).
I have a table where one of the columns is named type. I would like to SELECT 3 records for each type in that column. Is that possible?
Note also that I'm ...
5
votes
2answers
2k 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 ...
5
votes
1answer
2k 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,
...
5
votes
3answers
119 views
How to get maximum row of each group?
I have a database in which people submit votes for people in different places. At a given time, I want to find out who has the most votes at each place. (A person can be voted at two different places)
...
5
votes
3answers
353 views
MySQL Query Design for Latest Post per Forum
forums_forum
+-----+--------+-------------+-------+-----+
| fid | name | description | index | cid |
+-----+--------+-------------+-------+-----+
| 36 | gdghdf | hjghj | 54 | 5 |
| 45 ...
5
votes
4answers
2k views
MySQL SELECT most frequent by group
How do I get the most frequently occurring category for each tag in MySQL? Ideally, I would want to simulate an aggregate function that would calculate the mode of a column.
SELECT
t.tag
, ...
5
votes
1answer
2k views
Mysql GROUP BY and COUNT for multiple WHERE clauses
Simplified Table structure:
CREATE TABLE IF NOT EXISTS `hpa` (
`id` bigint(15) NOT NULL auto_increment,
`core` varchar(50) NOT NULL,
`hostname` varchar(50) NOT NULL,
`status` varchar(255) NOT ...
4
votes
5answers
1k views
SQL Query to select bottom 2 from each category
In Mysql, I want to select the bottom 2 items from each category
Category Value
1 1.3
1 4.8
1 3.7
1 1.6
2 9.5
2 9.9
2 9.2
2 10.3
3 4
3 ...
4
votes
3answers
185 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
3answers
1k views
How to get the latest record in each group using GROUP BY?
Let's say I have a table called messages with the columns:
id | from_id | to_id | subject | message | timestamp
I want to get the latest message from each user only, like you would see in your ...
4
votes
4answers
1k 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
...
4
votes
3answers
87 views
Inner join with 3 tables
I'm working with PHP and PDO, and I need to recolect information joining 3 tables:
photos
albums
album_photos
The table have the following structure:
photos:
photo_id (int)
path (varchar)
...
4
votes
1answer
2k views
MySQL select top X records for each individual in table
Is there a better way to get multiple "top X" results from a MySQL table? I'm able to accomplish this easily with a union when the number of different foo is small:
(SELECT foo,score FROM tablebar ...
4
votes
1answer
114 views
MySQL, GroupBy OrderBy
The first question your probably asking is how many Group by / Order by questions are there on SO? A lot. None of which are fitting my specific circumstance. Here is my following SQL query.
The ...
4
votes
3answers
66 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
7k views
Selecting all corresponding fields using MAX and GROUP BY
I have this table :
And I would like to make a request that would return for each deal_id the row with the highest timestamp, and the corresponding status_id.
So for this example, I would have ...
4
votes
3answers
1k views
MySQL Query: LIMITing a JOIN
Say I have two tables I want to join.
Categories:
id name
----------
1 Cars
2 Games
3 Pencils
And items:
id categoryid itemname
---------------------------
1 1 Ford
2 ...
4
votes
1answer
76 views
SQL join left get MAX(date)
i have these tables :
notice
id INT
cdate DATETIME
...
theme
id
name
notice_theme
id_notice
id_theme
I want to get the latest notices for each theme.
SELECT id_theme, n.id
FROM ...
4
votes
2answers
127 views
MySQL: how to get x number of results per grouping [duplicate]
Possible Duplicate:
mysql: Using LIMIT within GROUP BY to get N results per group?
I have a two tables:
Items
Categories
Each item belongs to a category. What I want to do is select 5 ...
4
votes
1answer
8k views
SQL query to get latest record for all distinct items in a table
I have a table of all sales defined like:
mysql> describe saledata;
+-------------------+---------------------+------+-----+---------+-------+
| Field | Type | Null | ...
4
votes
3answers
76 views
MySQL groupwise MAX() returns unexpected results
TABLE: LOAN
Loan_no Amount SSS_no Loan_date
7 700.00 0104849222 2010-01-03
8 200.00 0104849222 2010-02-28
9 ...
4
votes
2answers
591 views
MySQL: Limiting number of results received based on a column value | Combining queries
I've done research on this problem, but am having trouble finding a solution.
I have the following query that gives me a list of "some_id"s:
SELECT some_id FROM example GROUP BY some_id
And I have ...
4
votes
4answers
1k views
Get first/last n records per group by
I have two tables : tableA (idA, titleA) and tableB (idB, idA, textB) with a one to many relationship between them. For each row in tableA, I want to retrieve the last 5 rows corresponding in tableB ...
4
votes
2answers
4k 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
1answer
121 views
How to do left joins with least-n-per-group query?
I'm trying to get a somewhat complicated query working and am not having any luck whatsoever.
Suppose I have the following tables:
cart_items:
+--------------------------------------------+
| ...
4
votes
2answers
65 views
Join top 3 interest fields along with each user row
I'm trying to get the top 3 interests of each user, probably as a LEFT JOIN query.
The way the app is designed, each user has a set of interests which are no other than 'childs' (rows without parent) ...
3
votes
2answers
2k views
MYSQL shows incorrect rows when using GROUP BY
I have two tables:
article('id', 'ticket_id', 'incoming_time', 'to', 'from', 'message')
ticket('id', 'queue_id')
where tickets represent a thread of emails between support staff and customers, and ...
3
votes
4answers
122 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
5answers
855 views
MySQL return first row of a joined table
I have two tables (country & ducks) where the country table has every country in the world and the ducks table has a list of ducks with a country_id field to link to the main country.
I'm trying ...
3
votes
2answers
2k views
MySQL subquery - Find only first record in a LEFT JOIN
I'm trying to display a list of member records, and I have a few tables I'm using to display what I need.
That's the easy part. The part I need help with is with a table that has many records to ...
3
votes
3answers
619 views
Mysql: Select most recent entry by user and case number
I have a table whose data looks like this:
INSERT INTO `cm_case_notes` (`id`, `case_id`, `date`, `time`, `description`, `username`, `supervisor`, `datestamp`) VALUES
(45977, '1175', '2010-11-19 ...
3
votes
4answers
564 views
How to order values inside group by
Consider the following SQL Server table:
ID | X | Y
------+-------+-------
1 | 1 | 1
2 | 1 | 2
3 | 1 | 3
4 | 2 | 40
5 | 2 | 500
6 | 3 ...

