zarpio
zarpio

Reputation: 7338

Extract table-names from MySQL Workbench

Is there a way to extract/export only all table-names from MySQL Workbench, not data or structure, I just want list of all tables.

Upvotes: 0

Views: 2608

Answers (2)

user9869778
user9869778

Reputation: 21

use ; show tables; and then export as excel file you can find in my sql workbench.

Upvotes: 2

user3594141
user3594141

Reputation:

mysql -uusername -p -e"show tables"

Upvotes: 2

Related Questions