Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7701673
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T23:02:56+00:00 2026-05-31T23:02:56+00:00

I am using MySQL Workbench 5.2.37 and I find it a great tool for

  • 0

I am using MySQL Workbench 5.2.37 and I find it a great tool for database development.

I did create all the tables, fields and relationships and I also did document (adding a comment for every field with their functionality, same for relationships and tables).

I would like to export just this documentation. I mean, not the SQL scripts but the metadata I did put for the table and its fields.

Something like:

Table: Customers

Comment: Represent the customers of the system

Fields:

id (INTEGER not null, unique): The customer unique identifier

name (VARCHAR[100] not null, unique): The customer name

…

Does anybody know if extracting such a report is possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T23:02:58+00:00Added an answer on May 31, 2026 at 11:02 pm

    I’m guessing that you have the community edition of MySQL Workbench?

    I would think that documenting the database by CREATE statements would be close enough to what you are trying to achieve.

    Select all tables in your schema (SQL Editor View), right-click and select ‘Send to SQL Editor’ -> Create Statement.

    You could then save a file which consists of every table in your database.

    Example:

    CREATE TABLE `country` (
      `Code` char(3) NOT NULL DEFAULT '',
      `Name` char(52) NOT NULL DEFAULT '',
      `Continent` enum('Asia','Europe','North America','Africa','Oceania','Antarctica','South America') NOT NULL DEFAULT 'Asia',
      `Region` char(26) NOT NULL DEFAULT '',
      `SurfaceArea` float(10,2) NOT NULL DEFAULT '0.00',
      `IndepYear` smallint(6) DEFAULT NULL,
      `Population` int(11) NOT NULL DEFAULT '0',
      `LifeExpectancy` float(3,1) DEFAULT NULL,
      `GNP` float(10,2) DEFAULT NULL,
      `GNPOld` float(10,2) DEFAULT NULL,
      `LocalName` char(45) NOT NULL DEFAULT '',
      `GovernmentForm` char(45) NOT NULL DEFAULT '',
      `HeadOfState` char(60) DEFAULT NULL,
      `Capital` int(11) DEFAULT NULL,
      `Code2` char(2) NOT NULL DEFAULT '',
      PRIMARY KEY (`Code`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1$$
    
    
    delimiter $$
    
    CREATE TABLE `countrylanguage` (
      `CountryCode` char(3) NOT NULL DEFAULT '',
      `Language` char(30) NOT NULL DEFAULT '',
      `IsOfficial` enum('T','F') NOT NULL DEFAULT 'F',
      `Percentage` float(4,1) NOT NULL DEFAULT '0.0',
      PRIMARY KEY (`CountryCode`,`Language`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1$$
    

    If you happen to have the standard edition (commercial) there are some features which might be right up your alley :

    enter image description here

    http://www.mysql.com/products/workbench/features.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I created some tables using MySQL Workbench, and then did forward ‘forward engineer’ to
I have created a MySQL database using MySQL Workbench. It has about 20 tables.
I am using MySQL Workbench to create a database. I have a table called
I'm try to create a foreign key between tables by using MySQL Workbench. But
I'm using MySQL Workbench to maintain the database schema for an application. The .mwb
I'm just trying to create a new MySQL database with a few simple tables.
I'm new to database design and am currently using MySQL Workbench to help me
I am using MySQL Workbench on Windows. How do I find out the time
I am using MySQL Workbench 5.2.28 for designing my database schema. I need to
How to generate the DDL for all tables in a database of MySQL at

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.