PostgreSQLDate/Time FunctionsNOW
DEGREES

NOWDate/Time Functions

CURRENT_DATE

Returns the current date and time.

Syntax

NOW()

Example

Enter values below to update the example in real time.

orders
customer_id
status
created_at
INSERT INTO orders (customer_id, status, created_at)
VALUES (101, 'PENDING', NOW());