In the database to find the name of this column have all the tables

SELECT
    TABLE_NAME
FROM
    INFORMATION_SCHEMA.COLUMNS
WHERE
    COLUMN_NAME='Column'

Guess you like

Origin www.cnblogs.com/wdana/p/12025079.html