Unique items (SQL) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Unique items (SQL)

Hello everyone! I have a table with a lot of items that look like this: https://code.sololearn.com/cSXp357201mJ What I want to do is to select all the items with a unique number and with the most recent timestamp. I tried distinct and group by, but that didn't work in a way I wanted it to. Any solution? Right now, this is the query that I'm using: SELECT DISTINCT * FROM database WHERE TranspID=2 ORDER BY timestamp DESC How do I keep only the most recent timestamp items with a unique number?

27th Dec 2021, 5:59 AM
Artem 🇺🇦
Artem 🇺🇦 - avatar
1 Answer
0
Depends on the db system you are using. mssql: SELECT TOP num /* ... */ MySQL: /* ... */ LIMIT num Oracle: /* ... */ FETCH FIRST num ROWS ONLY /* ... */ -> rest of the query num -> number of elements you want. Select the most recent timestamp in the where part of your query to filter the results by this timestamp MySQL example: SELECT * FROM your_table WHERE timestamp = ( SELECT DISTINCT timestamp FROM your_table ORDER BY timestamp DESC LIMIT 1 );
27th Dec 2021, 12:06 PM
Alex
Alex - avatar