How to get the latest record first in qldb?

373 Views Asked by At

Select * from Transactions where id='1234'

How to get latest record first i.e. records in descending order

1

There are 1 best solutions below

0
On BEST ANSWER

QLDB doesn't currently support ORDER BY (or LIMIT), so you'd have to execute that query and do the sort in your application code.