I have three tables
Buildings
BuildingKey(int) | BuildingID(varchar) | ...
Areas
areaKey(int) | areaID(varchar) | buildingKey(int-FK[Buildings]) | ...
Transactions
transactionKey(int) | areaKey(int-FK[Areas]) | value(float) | trnDateTime(DateTime)
There may be several Areas in a Building.
All areas have many Transactions, with different value and different trnDateTime.
What I want to do is get the latest value (Transaction) of each Area of a Building (when the buildingKey is given).
I referred to some previous questions like this one, and tried following.
(1)
DECLARE @buildingKey INT
SET @buildingKey = 3
;WITH Vals AS (
SELECT T.areaKey AS AreaKey,
T.value AS CurrentValue,
T.trnDateTime AS RecordedDateTime,
ROW_NUMBER() OVER (PARTITION BY B.buildingKey ORDER BY T.trnDateTime DESC) RowID
FROM Buildings B INNER JOIN
Areas A ON B.buildingKey = A.buildingKey INNER JOIN
Transactions T ON A.areaKey = T.areaKey
WHERE B.buildingKey = @buildingKey
)
SELECT AreaKey,
CurrentValue,
MAX(RecordedDateTime) AS RecentReading,
RowID
FROM Vals
WHERE RowID = 1
GROUP BY AreaKey, CurrentValue, RowID
!) Returns the latest value (among all the Areas); not the latest value of each Area!
(2)
DECLARE @buildingKey INT
SET @buildingKey = 3
SELECT A.areaKey AS AreaKey,
A.areaID AS AreaID,
T.value AS CurrentValue,
T.trnDateTime AS RecordedDateTime
FROM Areas A, Buildings B, Transactions T
WHERE @buildingKey = B.buildingKey AND
B.buildingKey = A.buildingKey AND
T.areaKey = A.areaKey AND
T.trnDateTime IN (SELECT MAX(T.trnDateTime), T.areaKey
FROM Transactions T
GROUP BY T.areaKey)
!) Gives an error -->
Msg 116, Level 16, State 1, Line 16
Only one expression can be specified in the select list when the subquery is not introduced with EXISTS.

