将 postgis 表转换为 Mapinfo 文件

Convert postgis tables to Mapinfo files

我有几个从MIF/MID文件转换而来的postgis表,我对它们做了一些数据处理。
我使用 ogr2org 将 MIF/MID 转换为 postgis 表,

ogr2ogr -f PostgreSQL PG:"<dbconn>" "xxx.mif"

但是如何将表格转换为 MIF/MID?

根据https://www.gdal.org/drv_mitab.html

ogr2ogr -f "MID" foo.mid PG:"dbconnectionstring" -sql "select * from table"