Hello I have database called test1 and many tables,how can I see the name of the tables in whichthere is a cell below the column 'jobs' with value bigger than 500?
Asked
Active
Viewed 29 times
-3
-
1You should show an understanding of the problem and describe what you have tried so far. – Erik Oct 20 '16 at 14:26
1 Answers
0
This is really two questions:
- How do I find the tables that have a column named "jobs"?
- How do I repeat a query against a list of tables?
For 1 - you can use the columns view to find the tables that have a column named job.
For 2 - now that you know how to get your list of tables - you can build a query that runs against each table using the approach shown in this answer.

Community
- 1
- 1

Robert Horvick
- 3,966
- 21
- 18