I have a table with the following structure:
timestamp, tagid, value
I want a query where I can receive only the newest timestamped values for a list of tag id's. For example:
SELECT * FROM floatTable WHERE tagid IN(1,2,3,4,5,6)
Will return the entire set of values. I just want the latest stored value for each one.