currenttimestamp
CURRENTTIMESTAMP (often written as CURRENT_TIMESTAMP) is a built-in function used in many database systems and programming environments to obtain the current date and time from the system clock. When evaluated, it returns a timestamp value that represents the moment of the call. The function is commonly provided by standards such as ANSI SQL and by many vendor-specific dialects.
Semantics and data type: The exact return type and time zone handling vary by system. In many
Common uses: It is frequently used to timestamp records (for created_at or updated_at columns), to filter data
Examples of variations by system: PostgreSQL supports CURRENT_TIMESTAMP and NOW() as equivalent; Oracle's CURRENT_TIMESTAMP returns TIMESTAMP