SQL 转储文件的结构是什么?

What is the structure of an SQL dump file?

我使用 Firestore 作为我的主数据库,但我想将其数据导出为 SQL 格式。为此,我知道我需要为 create/format 转储文件创建一个脚本。构建文件内容的标准方法是什么?是XML吗?必填字段是什么?不幸的是,我找不到这个问题的答案。

附加信息: 我将从 Firestore 导出数据并将其导入到 Google Cloud SQL。

编辑 1:

我正在使用 Postgres。

如果您正在寻找以更便于查询的格式从 Cloud Firestore 获取数据的最简单方法,请查看新的 Firebase Extension that automatically exports specific collections from Firestore to BigQuery

BigQuery 仍然是一个没有SQL 的数据库,但是它通过 SQL 方言内置了对结构化查询的支持。