You can create or view a table by:
Navigate to Data Workbench > Databases.
Select the database for which you want to add or view tables.
Select New Table.
Type a name for the table and optionally type a description.
The name must consist only of lower case letters, numbers, and _.Select Create.
Under Schema, select Add Column.
Type or select values for the fields.
Optionally, add more columns.
Optionally, to delete a column from your table, select Edit Schema and select the x to the far right of the page.
Optionally, select … > Table Settings.

- Optionally, make selections on Edit Settings.

Optionally, select Confirm.
Select Save when your schema modification is complete.
Select Save when you are done defining columns.
The table:create command creates a table named test_table within the database test_db.
$ td table:create test_db test_table The tables command lists the tables and the number of records in each table for a given database.
td tables test_db Use the tables command without specifying a database name to list all the databases and tables that you have created. For example:
$ td tables