Get list of view that uses certain column name
Disclaimer : This tutorial is meant for beginners and for anyone who find it useful. The main purpose of this post to keep everything i find useful for future reference for myself and for others.
I was looking a query that tell me a list of view using certain view from a table, and found the answer here.
See the code below. Hope this could help someone somewhere.
select view_name from INFORMATION_SCHEMA.VIEW_COLUMN_USAGE where column_name='ColumnNameHere' and table_name='TableNameHere'



I am an organism that turns coffee into software 

Comments