Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Query the data for the current moment

Code Block
languagesql
-- By default, if no time is specified, the system will query data from the latest timestamp.
 SELECT * FROM paimon_tb;

-- Specify a current-time expression
SELECT * FROM paimon_tb FOR SYSTEM_TIME AS OF CURRENT_TIMESTAMP;

...