Data import and export statements

January 30, 2026 ยท View on GitHub

GoogleSQL can specify the syntax for exporting and importing data.

EXPORT DATA

EXPORT DATA
  [OPTIONS (key=value, ...)]
AS query;

Writes the query result to a target specified by the options. You can use this statement to write a result to a file or stream the result into another system.

LOAD DATA

Documentation is pending for this feature.