1
vote
1answer
55 views
Combining the following mulitple SQL queries into 1 with MS Access & ASP
I want to combine
Select top 2 scouting.*
From scouting
Where scouting.astroLoc Like 'D33%'
Order By scouting.jumpGate Desc
with
Select top 2 scouting.*
From scouting
Where s …
1
vote
3answers
144 views
Does the following query correct the problem?
hi
1) The following query obtains from each film category the cheapest
possible DVD with the highest rating:
SELECT FilmName, Rating, DVDPrice, Category
FROM Films AS FM1 INNE …
1
vote
1answer
114 views
SQL latest record per foreign_key
I've got the following 2 tables:
ingredients (id, name)
ingredient_prices (id, ingredient_id, price, created_at)
such that one ingredient can have many prices.
What will be the …
1
vote
1answer
148 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,
`stat …
13
votes
20answers
14k views
SQL - 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 th …
2
votes
2answers
32 views
choosing latest string when aggregating results in mysql
I've been tasked to do generate some reports on our Request Tracker usage. Request Tracker is a ticketing system we use for several departments were I work. To do this I'm taking a …
0
votes
3answers
67 views
Finding top n for each unique row
I'm trying to get the top N records for each unique row of data in a table (I'm grouping on columns b,c and d, column a is the unique identifier and column e is the score of which …
1
vote
3answers
57 views
Aggregate function in comparison of 2 rows in the same table (SQL)
Given the table definition:
create table mytable (
id integer,
mydate datetime,
myvalue integer )
I want to get the following answer by a single SQL query:
id date_ …
0
votes
4answers
146 views
PostgreSQL SELECT the last order per customer per date range
In PostgreSQL:
I have a Table that has 3 columns:
CustomerNum, OrderNum, OrderDate.
There may(or may not) be many orders for each customer per date range. What I am needing is …
1
vote
3answers
140 views
SQL: how to select single record for multiple id’s on the basis of max datetime?
I have the following SQL table,
Id WindSpeed DateTime
--------------------------------------
1 1.1 2009-09-14 16:11:38.383
1 1.9 2009-0 …
1
vote
3answers
78 views
Implementing MOST recent comment - SQL Server
So suppose I have a bunch of blog entries and I want to find out the most recent comment in each of them, how would I go about finding that out in SQL Server.
I have a list of in …
1
vote
2answers
152 views
Select Earliest Date and Time from List of Distinct User Sessions
I have a table of user access sessions which records website visitor activity:
accessid, userid, date, time, url
I'm trying to retrieve all distinct sessions for userid 1234, as …
2
votes
4answers
102 views
How to make a SQL query for last transaction of every account?
Say I have a table "transactions" that has columns "acct_id" "trans_date" and "trans_type" and I want to filter this table so that I have just the last transaction for each account …
3
votes
5answers
123 views
SQL Statement(s)
If I have the following table:
CREATE TABLE #temp (
id int,
num int,
question varchar(50),
qversion int );
INSERT INTO #temp VALUES(1, 1, 'Question 1 v1', 1);
INS …
1
vote
3answers
173 views
select maximum score grouped by date, display full datetime
Gday, I have a table that shows a series of scores and datetimes those scores occurred.
I'd like to select the maximum of these scores for each day, but display the datetime that t …
