Take min() deviceName and location on index; big assumption here that user edits apply to all historical rows; closes #26.
This commit is contained in:
parent
ba5b091c54
commit
8ae19ac07f
@ -65,7 +65,7 @@ app.get('/', function(req, res){
|
||||
var devIndexQry =
|
||||
"select coreId, coreName, locationDesc, max(published_at) as MaxPub, max(status) as MaxStatus " +
|
||||
"from Alerts otbl " +
|
||||
"where published_at = (select max(published_at) from Alerts where coreId = otbl.coreId) " +
|
||||
"where published_at = (select min(published_at) from Alerts where coreId = otbl.coreId) " +
|
||||
"group by coreId, coreName, locationDesc;";
|
||||
db.all(devIndexQry, function(err, rows){
|
||||
if(err !== null) {
|
||||
|
Loading…
Reference in New Issue
Block a user