Generate table DDL via query on MySQL and SQL Server

前端 未结 3 1177
逝去的感伤
逝去的感伤 2021-02-11 16:12

Is there an easy way to extract table DDL information, via a query, using either Ms or My SQL server? (preferably both?)

For example, using MySQL Administrator / Navica

3条回答
  •  滥情空心
    2021-02-11 16:55

    You can't get the CREATE Table text in a cross platform way, but you can get enough information to build it yourself from the INFORMATION_SCHEMA views.

提交回复
热议问题