Deze pagina is nog niet beschikbaar in uw eigen taal. We werken er hard aan om meer taalversies toe te voegen. Bedankt voor uw steun.

On this page

Show all

date_part

Updated on 2024-09-30 GMT+08:00

date_part

The date_part function is modeled on the traditional Ingres equivalent to the SQL-standard function extract:

date_part('field', source)

Note that the field must be a string, rather than a name. The valid field names are the same as those for extract. For details, see EXTRACT.

Example:

1
2
3
4
5
SELECT date_part('day', TIMESTAMP '2001-02-16 20:38:40');
 date_part 
-----------
        16
(1 row)
1
2
3
4
5
SELECT date_part('hour', INTERVAL '4 hours 3 minutes');
 date_part 
-----------
         4
(1 row)
Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback