Search sql database for a column name, then search for a value within the retuned columns

前端 未结 2 585
孤街浪徒
孤街浪徒 2021-01-07 11:38

This query will search a database for a specific column name. I would like to go one step further and search the returned columns for a specific value.

SELE         


        
2条回答
  •  灰色年华
    2021-01-07 12:02

    For example, I have a database named Organisation. I have more than one table where tax_id column is present.

    Most of the time, we have to find such a column from the whole database. The solution is provided below:

    select table_name,column_name from information_schema.columns
    where column_name like '%tax%'
    

    There is no matter in query to database name which ever you just need to change willing Column Name and will found required result

    Search any value Like computer in whole database in which column and in which tables value computer exists

    For it first we need to write a store procedure then we reuse it for our search i got it from http://vyaskn.tripod.com/search_all_columns_in_all_tables.htm very perfect result. after executing store procedure we got required result as in given below image. Image showing complete search result of keyword computer from whole database. Image showing complete search result of keyword computer from whole database

    Above was concept to solve it.Exact Query fullfilling above requirment is below

    Select tax_id from (select table_name from information_schema.columns
    where column_name = 'tax_id') as temp
    

提交回复
热议问题