我有一張表。我想獲取每個獨特的CoatingChambersID的最後一行。有24個獨特的房間,最後一行顯示房間在最後一個狀態的時間。 我可以得到一個獨特的名單像這樣: SELECT distinct CoatingChambersID, MAX(LastDT) as LastDT
FROM [REO].[dbo].[CoatingChamberStateLogs]
group
如果我們有一個簡單的表(SQLite的語法): CREATE TABLE Receptions (
ID INTEGER PRIMARY KEY AUTOINCREMENT,
ID_Patients INTEGER NOT NULL,
ID_Doctors INTEGER NOT NULL,
StartDateTime TIMESTAMP NOT NULL D
我有一個相當簡單的查詢(用作greatest-n-per-group情境中的子查詢)。 state_id是主鍵 - 其他的都不是唯一的。 SELECT max(states.state_id) AS max_state_id
FROM states
WHERE states.created >= '2017-06-10 21:53:38.977455'
AND states.crea
我能否獲得通過section_mod_id 查詢 SELECT
day_id, section_mod_id, count(day_id) as totalColumns
FROM
`supervision` sup
INNER JOIN
`section_mod` s ON sup.section = s.section_mod_id
GROUP BY