Answer the question
In order to leave comments, you need to log in
How to set up a table so that the data is stored in sorted form?
Let timeseries data be written to the table. It is necessary that the last record
would be guaranteed to be obtained on request
In cassandra, for example, there is such an option CLUSTERING ORDER.
How to achieve this in psql? SELECT * FROM tablename LIMIT 1
Answer the question
In order to leave comments, you need to log in
SELECT в SQL оперирует сетами, то есть неупорядоченными множествами. Порядок в котором будут выданы результаты вообще говоря неопределен и зависит от реализации.
А вот достать последнее значение из индекса по таймстемпу - быстрая операция, занимающая O(1)
Насколько я знаю гарантированно этого в PostgreSQL не достичь.
Но можно создать индекс для таблицы, а потом
CREAT INDEX index_name ON tablename (column_name DESC NULLS LAST)
CLUSTER tablename USING index_name
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question