SQL Server - To retrieve table names from database with condition on column
Asked By Ranjeet Dhumal on 12-Jan-12 02:17 AM
Hi..
I want to retrieve table names from database with condition on a perticular column.
examle:
Column Name='Description'
SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE LEN(Decription)>=40;
Will it work ? or is there any other solution for it.
Thank You.