how to find table which have specific column in sql code example
Example 1: search for column name in sql db when i don't know which table it is in
Select * from INFORMATION_SCHEMA.COLUMNS
where COLUMN_NAME LIKE '%MyName%'
Example 2: Columns Present in a table
DESCRIBE Table_Name;
OR
DESC Table_Name;