命令 - EXPORT RECORD

使用需要的格式,导出当前记录。当你指定一个OrientDB不支持的格式,它会显示一个支持格式的列表。

语法

EXPORT RECORD <format>
  • <format> 定义导出的格式。

例子

  • 使用SELECT创建一条记录导出:

    orientdb> SELECT name, surname, parent, children, city FROM Person WHERE 
              name='Barack' AND surname='Obama'
    
    ---+-----+--------+---------+--------+------------+------
     # | RID | name   | surname | parent | children   | city
    ---+-----+--------+---------+--------+------------+------
     0 | 5:4 | Barack | Obama   | null   | [5:5, 5:6] | -6:2
    ---+-----+--------+---------+--------+------------+------
    
  • 导出当前记录的JSON格式:

    orientdb> EXPORT RECORD JSON
    
    {
      'name': 'Barack',
      'surname': 'Obama',
      'parent': null,
      'children': [5:5, 5:6],
      'city': -6:2
    }
    
  • 使用一个错误的格式的值,会提示数据库支持的导出格式:

     
    orientdb> EXPORT RECORD GIBBERISH
    
    ERROR: Format 'GIBBERISH' was not found.
    Supported formats are:
    - json
    - ORecordDocument2csv