使用工具 mysql developer 导出表数据和表结构

这里写图片描述

导出查询结果:
这里写图片描述

导出表结构:
这里写图片描述

这里写图片描述

备注:得到的SQL文件中会包含一些类似这样的额外信息。在运行的时候可能会出问题,建议删除。

tablespace USERS
  pctfree 10
  initrans 1
  maxtrans 255
  storage
  (
    initial 64K
    next 1M
    minextents 1
    maxextents unlimited
  )


using index
  tablespace USERS
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 64K
    next 1M
    minextents 1
    maxextents unlimited
  )

猜你喜欢

转载自blog.csdn.net/yujikui1/article/details/80192338