How can I find a table's views in PostgreSQL?
I need to find all view based on table my_table. I try query select * from information_schema.views where view_definition ilike '%my_table%' and get empty table. That means I have no view based on my_table. But after trying to delete my_table…