E
E
EVOSandru62017-10-09 15:03:17
PostgreSQL
EVOSandru6, 2017-10-09 15:03:17

How to pull out records related to the day of a certain timestamp in postgres?

Good afternoon.
How to implement this thing in postgres:

$timestamp = 2345268712...; (например это 2017-10-12 или 2017-10-12 10:22, в обоих случая нужно вытащить записи только те, у который $timestamp вписывается в 2017-10-12)

select from tablename where date_create_stamp ~ ( записи?, которые относятся ко дню метки <b>$timestamp</b> );

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Eugene Wolf, 2017-10-09
@EVOSandru6

I don’t know, maybe there are better solutions and I’m not sure that I understood your question correctly ... But if you need to select all dates without taking into account the time (TIMESTAMP type fields), then the same construction works in PostgreSQL as in other databases :

SELECT * FROM table1 WHERE DATE(timestamp_field) = '2017-10-09';

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question