Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Search all tables using MySQL Workbench

Can I search all tables for a string with the MySQL GUI?

Or is something like this: mySQL query to search all tables within a database for a string? the only solution?

like image 543
Chris McKinnel Avatar asked Apr 30 '12 13:04

Chris McKinnel


1 Answers

Yes.

From the Schema Tree, choose the tables and/or schemas you want to search, right click and then select Search Data Table... from the context menu.

The search has some options:

Search for table fields that: "CONTAINS", "Search using =", "Search using LIKE", "Search using REGEXP". These search options are case-insensitive.

enter image description here

You can get more information in the official docs.

like image 75
hlscalon Avatar answered Sep 28 '22 16:09

hlscalon